| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using Magicodes.ExporterAndImporter.Core; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.Attributes; |
| | | using WIDESEA_Core.DB.Models; |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | [SugarTable(nameof(Dt_NewOutboundOrder), "åºåºå")] |
| | | public class Dt_NewOutboundOrder : BaseEntity |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "åæ®ç¼å·", IsOnlyIgnoreUpdate = true)] |
| | | public string OrderNo { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "䏿¸¸åæ®ç¼å·", IsOnlyIgnoreUpdate = true)] |
| | | public string UpperOrderNo { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "åæ®ç±»å", IsOnlyIgnoreUpdate = true)] |
| | | public int OrderType { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "åæ®ç¶æ")] |
| | | public int OrderStatus { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "å建æ¹å¼", IsOnlyIgnoreUpdate = true)] |
| | | public int CreateType { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | /// <summary> |
| | | /// æ¨åç³»ç» |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 10, ColumnDescription = "æ¨åç³»ç»")] |
| | | public string System { get; set; } |
| | | |
| | | |
| | | [ImporterHeader(Name = "ä»åºç¼ç ")] |
| | | [ExporterHeader(DisplayName = "ä»åºç¼ç ")] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "ä»åºç¼ç ")] |
| | | public string OutWareHouse { get; set; } |
| | | |
| | | [ImporterHeader(Name = "åæ®å°ç±»")] |
| | | [ExporterHeader(DisplayName = "åæ®å°ç±»")] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "åæ®å°ç±»", Length = 50)] |
| | | public string TransactionCode { get; set; } |
| | | [ImporterHeader(Name = "åºå
¥åºç±»å")] |
| | | [ExporterHeader(DisplayName = "åºå
¥åºç±»å")] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "åºå
¥åºç±»å",Length = 50)] |
| | | public string InoutType { get; set; } |
| | | |
| | | [Navigate(NavigateType.OneToMany, nameof(Dt_NewOutboundOrderDetail.OrderId), nameof(Id))] |
| | | public List<Dt_NewOutboundOrderDetail> Details { get; set; } |
| | | } |
| | | } |