¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.DB.Models; |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | /// <summary> |
| | | /// æçç¼å·ä¿¡æ¯ |
| | | /// </summary> |
| | | [SugarTable(nameof(Dt_PalletCodeInfo), "æçç¼å·ä¿¡æ¯")] |
| | | public class Dt_PalletCodeInfo : BaseEntity |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ä»åºä¸»é®")] |
| | | public int WarehouseId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æçç±»å")] |
| | | public int PalletType { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "æçç¼å·")] |
| | | public string PalletCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æµæ°´å·")] |
| | | public int SerialNo { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æå°ç¶æ")] |
| | | public int Status { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "尺寸")] |
| | | public int Size { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æçç±»å主é®")] |
| | | public int PalletTypeId { get; set; } |
| | | } |
| | | } |