using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.ContainerManagement.Info.Entity; /// /// 箱管_月结账单 /// [SqlSugar.SugarTable("CM_ustFeeDui", "箱管_月结账单")] public class CM_ustFeeDui : BaseOrgModel { /// /// Desc:月结账单编号 /// [SugarColumn(ColumnDescription = "月结账单编号", IsNullable = false, Length = 20)] public string Billno { get; set; } /// /// 结算对象Id /// [SqlSugar.SugarColumn(ColumnDescription = "结算对象Id", IsNullable = false, DefaultValue = "0")] public long CustomerId { get; set; } /// /// 结算对象 t_info_client CUSTNAME /// [SqlSugar.SugarColumn(ColumnDescription = "结算对象", IsNullable = true, Length = 50)] public string CustomerName { get; set; } /// /// Desc:租箱类型 1长租 0短租 2单程 CMRentTypeEnum /// [SugarColumn(ColumnDescription = "租箱类型", IsNullable = true, Length = 20, DefaultValue = "2")] public string RentType { get; set; } /// /// Desc:业务状态 /// [SugarColumn(ColumnDescription = "业务状态", IsNullable = true, Length = 20)] public string BillState { get; set; } /// /// Desc:备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)] public string Remark { get; set; } }