using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///订单扩展表 /// [SugarTable("EC_OrderExtend")] public partial class EC_OrderExtend { public EC_OrderExtend(){ } /// /// Desc:订单唯一编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public int Keyid {get;set;} /// /// Desc:文件编号 /// Default: /// Nullable:True /// public int? FileId {get;set;} /// /// Desc:校稿方式编号 /// Default: /// Nullable:True /// public int? ProofreadWayId {get;set;} /// /// Desc:校稿状态 /// Default: /// Nullable:True /// public int? ProofreadState {get;set;} /// /// Desc:校稿文件 /// Default: /// Nullable:True /// public int? ProofreadFileId {get;set;} /// /// Desc:印刷数量 /// Default: /// Nullable:True /// public int? PrintNum {get;set;} /// /// Desc:紧急程度编号 /// Default: /// Nullable:False /// public int ExigencyCaseId {get;set;} /// /// Desc:业务经理编号 /// Default: /// Nullable:True /// public int? BusinessManagerId {get;set;} /// /// Desc:客户经理编号 /// Default: /// Nullable:True /// public int? CustomerManagerId {get;set;} /// /// Desc:客户级别 /// Default: /// Nullable:True /// public int? CustomerLevelId {get;set;} /// /// Desc:联系人 /// Default: /// Nullable:True /// public string Contacts {get;set;} /// /// Desc:联系电话 /// Default: /// Nullable:True /// public string ContactPhone {get;set;} /// /// Desc:不含税价、普通发票、增值税票 /// Default: /// Nullable:True /// public int? InvoiceId {get;set;} /// /// Desc:剩余印刷数量 /// Default: /// Nullable:True /// public int? SurplusPrintNum {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operate {get;set;} /// /// Desc:备注 /// Default: /// Nullable:False /// public string Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string BookNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string BookPrice {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string NumPerBag {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string BagNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? DelayTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Productionprogress {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PrintPackDeliveryRequir {get;set;} /// /// Desc: /// Default:2 /// Nullable:True /// public int? Kaipiaoshenqing {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? KaipiaoshenqingTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? KaipiaoshenqingCreater {get;set;} /// /// Desc: /// Default:2 /// Nullable:True /// public int? Quchudingdan {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? QuchudingdanTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? QuchudingdanCreater {get;set;} /// /// Desc: /// Default:1 /// Nullable:True /// public int? Kehuqianshou {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? KehuqianshouTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? KehuqianshouCreater {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? KaipiaoquerenTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? KaipiaoquerenCreater {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? shifouDelivery {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? DeliveryOrderId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? KaipiaoshenqingId {get;set;} /// /// Desc: /// Default:1 /// Nullable:True /// public int? printunit {get;set;} } }