using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 利润收入表
///
public partial class ProfitRevenue
{
///
/// 主键
///
public int Id { get; set; }
///
/// 收入类型
///
public int ExpenseType { get; set; }
///
/// 收入金额
///
public decimal Price { get; set; }
///
/// 用户id
///
public int UserId { get; set; }
///
/// 发放货币
///
public decimal Amount { get; set; }
///
/// 说明
///
public string? Description { get; set; }
///
/// 创建时间
///
public DateTime? CreatedAt { get; set; }
///
/// 修改时间
///
public DateTime? UpdatedAt { get; set; }
///
/// 账单日期
///
public DateOnly ProfitDate { get; set; }
}