| | |
| | | using SqlSugar; |
| | | using Magicodes.ExporterAndImporter.Core; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | [SugarTable("Dt_DeliveryOrder_Hty", "åºåºååå²è¡¨")] |
| | | public class Dt_DeliveryOrder_Hty : BaseEntity |
| | | public class Dt_DeliveryOrder_Hty : Dt_DeliveryOrder, IBaseHistoryEntity |
| | | { |
| | | [SugarColumn(ColumnName = "HistoryId", IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "åå²è®°å½ä¸»é®")] |
| | | public int HistoryId { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Id", ColumnDescription = "å主é®")] |
| | | public int Id { get; set; } |
| | | [SugarColumn(ColumnName = "Out_no", IsNullable = true, Length = 50, ColumnDescription = "åºåºåå·")] |
| | | public string Out_no { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Out_type", IsNullable = true, Length = 3, ColumnDescription = "åºåºåç±»å")] |
| | | public string Out_type { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Client_no", IsNullable = true, Length = 50, ColumnDescription = "客æ·ä»£ç ")] |
| | | public string Client_no { get; set; } |
| | | |
| | | |
| | | [SugarColumn(ColumnName = "Client_name", IsNullable = true, Length = 50, ColumnDescription = "客æ·åç§°")] |
| | | public string Client_name { get; set; } |
| | | |
| | | |
| | | //åºæ¿å· |
| | | [SugarColumn(ColumnName = "Warehouse_no", IsNullable = true, ColumnDescription = "åºæ¿å·")] |
| | | public string Warehouse_no { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | [SugarColumn(ColumnName = "Account_time", IsNullable = true, ColumnDescription = "åºåºè®°è´¦æ¶é´")] |
| | | public DateTime? Account_time { get; set; } |
| | | [Navigate(NavigateType.OneToMany, nameof(Dt_DeliveryOrderDetail_Hty.DeliveryOrderId))] |
| | | public new List<Dt_DeliveryOrderDetail_Hty> Details { get; set; } |
| | | /// <summary> |
| | | /// åè¡¨ä¸»é® |
| | | /// </summary> |
| | | [ImporterHeader(Name = "å表主é®")] |
| | | [ExporterHeader(DisplayName = "å表主é®")] |
| | | [SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "å表主é®")] |
| | | public int SourceId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è¡¨å¤´ç¶æï¼æ°å»ºï¼å¼å§ï¼å·²å®æ //详æ
表å
¨é¨ç¶æä¸ºå
¨é¨ï¼å¨å°ç¶ææ¹æå®æåæä¼ä¸ä¼ ç»ä¸æ¸¸ç³»ç» |
| | | /// æä½ç±»å |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "OutStatus", IsNullable = true, ColumnDescription = "ç¶æ")] |
| | | public string OutStatus { get; set; } |
| | | [ImporterHeader(Name = "æä½ç±»å")] |
| | | [ExporterHeader(DisplayName = "æä½ç±»å")] |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "æä½ç±»å")] |
| | | public string OperateType { get; set; } |
| | | |
| | | //æ¯å¦éè¦ä¸é¢çåæ®µ |
| | | //ä¼å
级 priority |
| | | //æ¯å¦åæ¶ Is_cancel |
| | | |
| | | //ä¼å
级 priority |
| | | //[SugarColumn(ColumnName = "Priority", IsNullable = true, ColumnDescription = "ä¼å
级")] |
| | | //public int Priority { get; set; } |
| | | |
| | | ////æ¯å¦åæ¶ Iscancel |
| | | //[SugarColumn(ColumnName = "Iscancel", IsNullable = true, ColumnDescription = "æ¯å¦åæ¶")] |
| | | //public int Iscancel { get; set; } |
| | | [Navigate(NavigateType.OneToMany, nameof(Dt_DeliveryOrderDetail.DeliveryOrderId))] |
| | | public List<Dt_DeliveryOrderDetail> Details { get; set; } |
| | | /// <summary> |
| | | /// ç§»å
¥å岿¶é´ |
| | | /// </summary> |
| | | [ImporterHeader(Name = "ç§»å
¥å岿¶é´")] |
| | | [ExporterHeader(DisplayName = "ç§»å
¥å岿¶é´")] |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç§»å
¥å岿¶é´")] |
| | | public DateTime InsertTime { get; set; } |
| | | } |
| | | } |