cnf
2025-04-02 0dd3469715a719779b08d0df00b801ea054b2eab
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 MES.Service.Modes.QcIssueResult;
 
[SugarTable("MES_QA_ITEMS_DETECT_01")]
public class UpdateMesQaItems
{
    [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_QM_ID",
        IsPrimaryKey = true)]
    public decimal Id { get; set; }
    //送货单号
    [SugarColumn(ColumnName = "RELEASE_NO")]
    public string? ReleaseNo { get; set; }
 
    //送货单号
    [SugarColumn(ColumnName = "FNG_HANDLE")]
    public string? FngHandle { get; set; }
 
    //送货单号
    [SugarColumn(ColumnName = "FMRMODE")]
    public string? FMRMODE { get; set; }
 
}