杨前锦
2025-05-26 d0a265713fd18162f3a82bdcd22e267df7298c7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
{
    [SugarTable("TN_green_tire_information")]
    public class GreenTireInformation : BaseModel
    {
        public string ITEMCODE { get; set; } // 物料编码
        public string BARCODE { get; set; } // 条形码
        public string TIRECODE { get; set; } // 商品代码
        public string MCN { get; set; } // 机器代码
        public string OPR { get; set; } // 操作员id1
        public string OPR02 { get; set; } // 操作员id2
        public string OPR03 { get; set; } // 操作员id3
        public string OPR04 { get; set; } // 操作员id4
        public string WINDUP { get; set; } // windup
        public int QTY { get; set; } // 数量
        public string TXNDATE { get; set; } // 生产时间
        public string DATE_SHIFT { get; set; } // 转班日期
    }
}