using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 利润支出表
///
public partial class ProfitExpenses
{
///
/// 主键
///
public int Id { get; set; }
///
/// 支出类型
///
public int ExpenseType { 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; }
}