wangxinhui
5 天以前 a9bba690fdead98f549d000ec29aa0cd6887cd22
ÏîÄ¿´úÂë/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,86 @@
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_MaterialInfo), "物料信息组盘表")]
    public class Dt_MaterialInfo : BaseEntity
    {
        /// <summary>
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
        /// <summary>
        /// ç‰©æ–™åç§° é›¶ä»¶å·
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "物料名称")]
        public string MaterialName { get; set; }
        /// <summary>
        /// å®¹å™¨ç¼–号
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "容器编号")]
        public string ContainerCode { get; set; }
        /// <summary>
        /// å®¹å™¨å½“前对应位置
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "容器当前对应位置")]
        public string Position { get; set; }
        /// <summary>
        /// å®¹å™¨å‡ºåœºä½ç½®
        /// </summary>
        [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容器出场位置")]
        public string EndPosition { get; set; }
        /// <summary>
        /// æ˜¯å¦æ–°å¢žå¢žå®¹å™¨
        /// </summary>
        [SugarColumn(ColumnDescription = "是否属于新增容器", DefaultValue = "0")]
        public bool IsNew { get; set; }
        /// <summary>
        /// å®¹å™¨æ˜¯å¦ç»‘定
        /// </summary>
        [SugarColumn(ColumnDescription = "容器是否绑定", DefaultValue = "1")]
        public bool IsBind { get; set; } = true;
        /// <summary>
        /// è½¦åž‹
        /// </summary>
        [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "车型")]
        public string Carmodel { get; set; }
        /// <summary>
        /// åŒºåŸŸ
        /// </summary>
        [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "区域")]
        public string Region { get; set; }
        /// <summary>
        /// å¤‡ç”¨å­—段1
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "备用字段1")]
        public string? location_bak_1 { get; set; }
        /// <summary>
        /// å¤‡ç”¨å­—段2
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "备用字段2")]
        public string? location_bak_2 { get; set; }
        /// <summary>
        /// å¤‡ç”¨å­—段3
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "备用字段3")]
        public string? location_bak_3 { get; set; }
    }
}