杨前锦
2025-07-01 a93b0e99036c24b9bd58c79bf5e7364b1ba28bae
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using HH.WCS.Mobox3.FJJT.models;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.FJJF.models
{
 
    /// <summary>
    /// 托盘与物料信息对应表
    /// </summary>
    [SugarTable("TN_LOT_CARRIER")]
    internal class LjLotCarrier : BaseModel
    {
        public int ID { get; set; } //主键
        public string PALLET_ID { get; set; } //托盘号
        public string LOT_NAME { get; set; } //批次条码 (批次表更新)
        public string YCL_BATCH { get; set; } //原材料批次号
        public string MATERIALCODE { get; set; } //物料编码
        public int QTY { get; set; } //物料数量
        public string PRODUCTION_DATE { get; set; } //生产日期
        public string QC_STATUS { get; set; } //检验状态
        public string SHELFLIFE_DATE { get; set; } //最长停放日期
        public string MINSHELFLIFE_DATE { get; set; } //最小停放日期
        public string CREATION_DATE { get; set; } //创建日期
        public string RECEIVE_FLAG { get; set; } //记录状态 PENDING:默认 COMPLETE:读取
        public string RECEIVE_DATE { get; set; } //读取日期
 
 
        /*public int ID { get; set; } //主键
        public string Pallet_Id { get; set; } //托盘号
        public string lot_name { get; set; } //批次条码 (批次表更新)
        public string YCL_BATCH { get; set; } //原材料批次号
        public string MaterialCode { get; set; } //物料编码
        public int QTY { get; set; } //物料数量
        public string Production_date { get; set; } //生产日期
        public string QC_Status { get; set; } //检验状态
        public string ShelfLife_Date { get; set; } //最长停放日期
        public string MinShelfLife_Date { get; set; } //最小停放日期
        public string creation_date { get; set; } //创建日期
        public string receive_flag { get; set; } //记录状态 PENDING:默认 COMPLETE:读取
        public string receive_date { get; set; } //读取日期*/
    }
}