杨前锦
2025-06-19 d42ad8b01195def2a9309930e14f90ff13ad47b1
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
    }
}