wangxinhui
5 天以前 a9bba690fdead98f549d000ec29aa0cd6887cd22
ÏîÄ¿´úÂë/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_ContainerInfo.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,101 @@
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; }
    }
}