| | |
| | | [SugarTable("Dt_CabinOrder", "å
¥åºå表")] |
| | | public class Dt_CabinOrder:BaseEntity |
| | | { |
| | | |
| | | [SugarColumn(ColumnName ="Id",IsPrimaryKey =true,IsIdentity =true,ColumnDescription ="主é®")] |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Order_no",IsNullable =true,Length =50,ColumnDescription ="å
¥åºåå·")] |
| | | [SugarColumn(IsNullable =true,Length =50,ColumnDescription ="å
¥åºåå·")] |
| | | public string Order_no { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Order_type", IsNullable = true, Length = 3, ColumnDescription = "å
¥åºç±»åï¼1æ£å¸¸/3éè´§")] |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 3, ColumnDescription = "å
¥åºç±»åï¼1æ£å¸¸/3éè´§")] |
| | | public string Order_type { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Supplier_no", IsNullable = true, Length = 50, ColumnDescription = "ä¾åºå代ç ")] |
| | | |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "ä¾åºå代ç ")] |
| | | public string Supplier_no { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Account_tiem", IsNullable = true, ColumnDescription = "å
¥åºè®°è´¦æ¶é´")] |
| | | public DateTime Account_tiem { get; set; } |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "å
¥åºè®°è´¦æ¶é´")] |
| | | public DateTime?Account_tiem { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 䏿¸¸ç¶æ æ°å»ºï¼å¼å§ï¼å·²å®æ |
| | | /// 䏿¸¸ä¸åï¼æ°å»ºï¼ |
| | | /// 详æ
å¼å§ï¼å¼å§ï¼ |
| | | /// 详æ
å
¨é¨å®æï¼å·²å®æï¼ä¸ä¼ ç»ä¸æ¸¸ç³»ç»ï¼ç§»å
¥åå²è¡¨å é¤ä¿¡æ¯ï¼ |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "OdrderStatus",IsNullable = true,Length =50, ColumnDescription = "è¡¨å¤´ç¶æ")] |
| | | public string OdrderStatus { get; set; } |
| | | |
| | | //䏿¸¸å®æç¶æï¼æªå®æï¼é¨å宿ï¼å·²å®æ |
| | | //[SugarColumn(ColumnName = "UpOrderStatus", IsNullable = true, Length = 50, ColumnDescription = "ç»ä¸æ¸¸ç¶æ")] |
| | | //public string UpOrderStatus { get; set; } |
| | | |
| | | |
| | | //ä¸é¢æ¯å¦éè¦è¿äºåæ®µï¼ |
| | | //ä¼å
级 priority |
| | |
| | | //[SugarColumn(ColumnName = "Iscancel", IsNullable = true, ColumnDescription = "æ¯å¦åæ¶(1æ¯0å¦)")] |
| | | //public int Iscancel { get; set; } |
| | | |
| | | [Navigate(NavigateType.OneToMany,nameof(Dt_CabinOrderDetail.OrderId))] |
| | | public List<Dt_CabinOrderDetail> Details { get; set; } |
| | | |
| | | |
| | | } |
| | | } |