You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Op.Entity;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Fee.Entity
|
|
{
|
|
/// <summary>
|
|
/// 往来单位费用模板记录
|
|
/// </summary>
|
|
[SugarTable("fee_cust_template_record", "往来单位费用模板记录")]
|
|
public class FeeCustTemplateRecord
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务ID")]
|
|
public long BusinessId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务类型")]
|
|
public BusinessType BusinessType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用模板Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "费用模板Id")]
|
|
public long TemplateId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收付类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "收付类型")]
|
|
public FeeType FeeType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用类别ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "费用类别ID", Length = 50, IsNullable = true)]
|
|
public string? FeeCategoryId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "创建人")]
|
|
public long CreateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "创建时间")]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|