huanghongfeng
2025-11-10 234e0265fbed611b20f0903bb69fbf0bd5417c1c
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Dt_pallet.cs
@@ -12,8 +12,12 @@
    [SugarTable(nameof(Dt_pallet), "车名称信息")]
    public class Dt_pallet
    {
        /// <summary>
        /// ä¸»é”®ID
        /// </summary>
        [ImporterHeader(Name = "主键")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        [ExporterHeader(DisplayName = "主键")]
        [SugarColumn(IsPrimaryKey = true, IsNullable = true, IsIdentity = true, ColumnDescription = "主键")]
        public int palletid { get; set; }
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "绑定的车轮名称")]
@@ -22,7 +26,8 @@
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "名称")]
        public string palletname { get; set; }
        [SugarColumn(IsNullable = true, ColumnDescription = "楼层")]
        public int pallLayer { get; set; } = 3;
    }
}