using Chuanyin.Attribute; using CoreCms.Net.Model.Entities.baseModel; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreCms.Net.Model.Entities.baifenbingfa.DistributionSendOder { /// /// 供应商发货配发记录 /// [SugarTable(TableDescription = "供应商发货配发记录")] [SqlCodeFirst] public class DistributionSendOder: BFBaseModel { /// /// ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")] public int id { get; set; } /// /// 分配供应商用户ID /// [SugarColumn(ColumnDescription = "分配供应商用户ID", IsNullable =true)] public int? userID { get; set; } /// /// 分配供应商ID /// [SugarColumn(ColumnDescription = "分配供应商ID")] public int distributionID { get; set; } /// /// 分配时间 /// [SugarColumn(ColumnDescription = "分配时间", IsNullable = true)] public DateTime? sendTime { get; set; } /// /// 确认时间 /// [SugarColumn(ColumnDescription = "确认时间", IsNullable = true)] public DateTime? activeTime { get; set; } /// /// 原因 /// [SugarColumn(ColumnDescription = "原因", IsNullable = true)] public string description { get; set; } /// /// 分配操作员ID /// [SugarColumn(ColumnDescription = "分配操作员ID", IsNullable = true)] public int? sendMangerID { get; set; } /// /// 配送单ID /// [SugarColumn(ColumnDescription = "配送单Id")] public string deliveryID { get; set; } /// /// 配送状态 /// [SugarColumn(ColumnDescription = "配送状态",IsNullable =true)] public sendDistributionAcceptType? sendDistributionAccept { get; set; } } }