杨前锦
2025-06-04 d44e3abf0d51cfea1ed7df510974d69458cf516d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.YNJT_PT.models
{
    /// <summary>
    /// 硫化工单表
    /// </summary>
    [SugarTable("TN_ProductionShedule")]
    public class ProductionShedule : BaseModel
    {
        public string DATESHIFT { get; set; }  // 日期班次  格式:"dd/MM/yy"
        public string ITEMCODE { get; set; } // 物料编码
        public string MCN { get; set; } // 硫化机工位号
        public int QTY { get; set; } // 数量
        public string SHIFT { get; set; } // 班次
        public int RECID { get; set; } // 唯一ID
    }
}