| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEAWCS_Core.DB.Models; |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [SugarTable(nameof(Dt_ContainerInfo), "容å¨ä¿¡æ¯")] |
| | | public class Dt_ContainerInfo : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 请æ±idï¼å¹çuuid32ä½ |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, ColumnDescription = "请æ±idï¼å¹çuuid32ä½")] |
| | | public string RequestId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨ç±»å |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容å¨ç±»å", DefaultValue = "RACK")] |
| | | public string ContainerType { get; set; } = "RACK"; |
| | | |
| | | /// <summary> |
| | | /// 容å¨ç¼å· |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, ColumnDescription = "容å¨ç¼å·")] |
| | | public string ContainerCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容卿¨¡åç¼ç |
| | | /// </summary> |
| | | //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容卿¨¡åç¼ç ")] |
| | | //public string ContainerModelCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨å
¥åºè§åº¦ |
| | | /// </summary> |
| | | //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容å¨å
¥åºè§åº¦")] |
| | | //public string EnterOrientation { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨å½å对åºä½ç½® |
| | | /// </summary> |
| | | //[SugarColumn(Length = 100, ColumnDescription = "容å¨å½å对åºä½ç½®")] |
| | | //public string Position { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ°å¢å¢å®¹å¨ |
| | | /// </summary> |
| | | //[SugarColumn(ColumnDescription = "æ¯å¦æ°å¢å¢å®¹å¨", DefaultValue = "0")] |
| | | //public bool IsNew { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容卿 ¡éªç |
| | | /// </summary> |
| | | //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容卿 ¡éªç ")] |
| | | //public string ContainerValidationCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// é
置容å¨é»è®¤æ ¡éªç |
| | | /// </summary> |
| | | //[SugarColumn(ColumnDescription = "é
置容å¨é»è®¤æ ¡éªç ", IsNullable = true, DefaultValue = "0")] |
| | | //public bool WithDefaultValidationCode { get; set; } |
| | | |
| | | // 䏿¹æ¯å®¹å¨åºåºçç¸å
³å段 |
| | | |
| | | /// <summary> |
| | | /// 容å¨åºåºä½ç½® |
| | | /// </summary> |
| | | //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容å¨åºåºä½ç½®")] |
| | | //public string EndPosition { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨åºåºåæ¯å¦å é¤ |
| | | /// </summary> |
| | | //[SugarColumn(ColumnDescription = "容å¨åºåºåæ¯å¦å é¤", IsNullable = true, DefaultValue = "0")] |
| | | //public bool isDelete { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 容å¨çç©ºæ»¡ç¶æ,空ï¼EMPTY 满ï¼FULL |
| | | /// </summary> |
| | | //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容å¨çç©ºæ»¡ç¶æ")] |
| | | //public string emptyStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨çç©ºæ»¡ç¶æ,空ï¼EMPTY 满ï¼FULL |
| | | /// </summary> |
| | | //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "æ´æ°åå ")] |
| | | //public string reason { get; set; } |
| | | } |
| | | } |