杨前锦
2025-07-07 c8f338feee0b6003d8f069b1d37fd9b90dd1b7f4
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
27
28
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.YNJT_BZP.models
{
    /// <summary>
    /// GT 中间表 
    /// </summary>
    public class MatlInformation
    {
        public string item { get; set; } // 产品材料的物品代码(从条形码数字左侧起截取前10位)
        public string bc_entried { get; set; } // 产品材料的条形码编号
        public string toolineCode { get; set; } // 工装条码
        public string mcn { get; set; } // 机器代码编号
        public string txndate { get; set; } // 产品材料的生产时间
        public string shift { get; set; } // 工作班次代码(班次 I (07:00~14:59) - 班次 II (15:00~22:59) - 班次 III (23:00~06:59))
        public int qty { get; set; } // 首次扫描的条码的产品数量
        public string jdge { get; set; }    // 质检状态  OK / HOLD
        public int overagv { get; set; }    // 有效期
        public int minhour { get; set; }    // 最低放置时间(h)
        public int productTypeCode { get; set; }    // 物料类别编码
        public string last_modify_time { get; set; } // 最后修改时间
    }
}