111
cnf
2025-04-14 88a1ab54409ebf39c0bfa269aa7d513a7ac9219e
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace MES.Service.Modes.SentLaboratory;
 
//产品检测单----项目信息表
[SugarTable("MES_QMS_SAMPLE_PJT")] 
public class UpdateMesQmsSamplePjt
{
    //SEQ_QMS_EQ_CHECK
    [SugarColumn(ColumnName = "ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_QMS_EQ_CHECK")]
    public decimal Id { get; set; }
 
    //主表ID
    [SugarColumn(ColumnName = "PID")]
    public decimal? PID { get; set; }
 
    //送检单号
    [SugarColumn(ColumnName = "SJ_NO")]
    public string? SJ_NO { get; set; }
 
    //检验单号
    [SugarColumn(ColumnName = "RELEASE_NO")]
    public string? RELEASE_NO { get; set; }
 
    //物料编码
    [SugarColumn(ColumnName = "ITEM_NO")]
    public string? ITEM_NO { get; set; }
 
    //样本数量
    [SugarColumn(ColumnName = "QUANTITY")]
    public string? QUANTITY { get; set; }
 
    //急料标识
    [SugarColumn(ColumnName = "URGENT_FLAG")]
    public decimal? URGENT_FLAG { get; set; }
 
    //创建人
    [SugarColumn(ColumnName = "CREATE_BY")]
    public string? CREATE_BY { get; set; }
 
    //创建时间
    [SugarColumn(ColumnName = "CREATE_DATE")]
    public DateTime? CREATE_DATE { get; set; }
 
    //物料内码
    [SugarColumn(ColumnName = "ITEM_ID")]
    public decimal? ITEM_ID { get; set; }
 
    //供应商名称
    [SugarColumn(ColumnName = "SUPP_NAME")]
    public string? SUPP_NAME { get; set; }
 
    //测试判定结果
    [SugarColumn(ColumnName = "DECISION_OUTCOMES")]
    public string? DECISION_OUTCOMES { get; set; }
}