| | |
| | | using SqlSugar; |
| | | using Magicodes.ExporterAndImporter.Core; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | |
| | | [SugarTable(nameof(Dt_StockInfo), "åºåä¿¡æ¯")] |
| | | public class Dt_StockInfo : BaseEntity |
| | | { |
| | | [ExporterHeader(IsIgnore =true)] |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | [ExporterHeader(DisplayName = "æçç¼å·")] |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "æçç¼å·")] |
| | | public string PalletCode { get; set; } |
| | | [ExporterHeader(DisplayName = "ç±»å")] |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç±»å")] |
| | | public int MaterialType { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "è´§ä½ç¼å·")] |
| | | public string LocationCode { get; set; } |
| | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "åºåç¶æ")] |
| | | public int StockStatus { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç©æç¶æ")] |
| | | public int Wlstatus { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "éé")] |
| | | public decimal Materialweight { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "ç产æ¶é´")] |
| | | public DateTime Mgeneratetime { get; set; } |
| | | |
| | | |
| | | [Navigate(NavigateType.OneToMany, nameof(Dt_StockInfoDetail.StockId), nameof(Id))] |
| | | public List<Dt_StockInfoDetail> Details { get; set; } |
| | | } |