1
huangxiaoqiang
5 天以前 85d9ca4ec972ce4d020db046d930e8991709ae2d
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtBoxingInfo.cs
@@ -22,11 +22,22 @@
        public string PalletCode { get; set; }
        /// <summary>
        /// æ˜¯å¦æ»¡ç›˜
        /// è´§ä½ç¼–码
        /// </summary>
        [Required]
        [SugarColumn(IsNullable = true, ColumnDescription = "是否满盘")]
        public bool IsFull { get; set; } = true;
        [SugarColumn(IsNullable = true, ColumnDescription = "货位编码")]
        public string LocationCode { get; set; }
        /// <summary>
        /// æ˜¯å¦æ•´å‡º
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否整出")]
        public bool IsFullExit { get; set; } = true;
        /// <summary>
        /// çŠ¶æ€
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "状态")]
        public int StockStatus { get; set; }
        /// <summary>
        /// å¤‡æ³¨
@@ -34,29 +45,9 @@
        [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
        public string Remark { get; set; }
        /// <summary>
        /// ç”Ÿäº§äº§çº¿
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "生产产线")]
        public string ProductionLine { get; set; }
        /// <summary>
        /// å½“前工序
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "当前工序")]
        public string ProcessCode { get; set; }
        /// <summary>
        /// ä¸‹ä¸€å·¥åº
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "下一工序")]
        public string NextProcessCode { get; set; }
        /// <summary>
        /// åº“存明细
        /// </summary>
        [MinItemsCount(1)] // æ£€æµ‹é›†åˆå…ƒç´ æœ€å°‘1个
        [SugarColumn(ColumnName = "BoxingInfoDetails")]
        [Navigate(NavigateType.OneToMany, nameof(DtBoxingInfoDetail.BoxingInfoId))]
        public List<DtBoxingInfoDetail>? BoxingInfoDetails { get; set; }