using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Check.Entity { /// /// 对账单业务关联表 /// [SqlSugar.SugarTable("check_bill_business")] public class CheckBillBusiness { /// /// Id /// [SugarColumn(ColumnDescription = "Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 对账Id /// [SqlSugar.SugarColumn(ColumnDescription = "对账Id", IsNullable = false, DefaultValue = "0")] public long CheckId { get; set; } /// /// 业务Id /// [SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, DefaultValue = "0")] public long BusinessId { get; set; } } }