dengjunjie
2025-07-09 7ca9651f81d7b84f054194d3d46fdbd1d9c8b922
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_PalletCodeInfo.cs
@@ -11,21 +11,44 @@
    [SugarTable(nameof(Dt_PalletCodeInfo), "托盘码信息")]
    public class Dt_PalletCodeInfo:BaseEntity
    {
        /// <summary>
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
        /// <summary>
        /// æ‰˜ç›˜ç¼–号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "托盘编号")]
        public string PalletCode { get; set; }
        [SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "打印状态")]
        public int Status { get; set; }
        /// <summary>
        /// æ¡ç æ•°é‡
        /// </summary>
        [SugarColumn(IsNullable = false, DefaultValue = "1", ColumnDescription = "打印数量")]
        public int Qty { get; set; }
        /// <summary>
        /// åºå·
        /// </summary>
        [SugarColumn(IsNullable = false, DefaultValue = "1", ColumnDescription = "打印数量")]
        public int Code { get; set; }
        /// <summary>
        /// æ‰“印次数
        /// </summary>
        [SugarColumn(IsNullable = false, DefaultValue = "2", ColumnDescription = "打印次数")]
        public int PrintFrequency { get; set; }
        /// <summary>
        /// å®½
        /// </summary>
        [SugarColumn(IsNullable = false, DefaultValue = "500", ColumnDescription = "宽")]
        public int Width { get; set; }
        [SugarColumn(IsNullable = false, DefaultValue = "100", ColumnDescription = "高")]
        /// <summary>
        /// é«˜
        /// </summary>
        [SugarColumn(IsNullable = false, DefaultValue = "150", ColumnDescription = "高")]
        public int Height { get; set; }
        /// <summary>
        /// å­—体大小
        /// </summary>
        [SugarColumn(IsNullable = false, DefaultValue = "28", ColumnDescription = "字体大小")]
        public int Size { get; set; }
    }