啊鑫
6 天以前 f2900f2e7a9fef2e536c34e8d8406ac60c0f06ba
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
using System;
using SqlSugar;
 
namespace MES.Service.Modes
{
    [SugarTable("MES_QAMFTP")]
    public class MesQamftp
    {
        [SugarColumn(ColumnName = "ID")]
        public decimal Id { get; set; }
 
        [SugarColumn(ColumnName = "ITEM_NO")]
        public string ItemNo { get; set; }
 
        [SugarColumn(ColumnName = "FTYPE")]
        public string Ftype { get; set; }
 
        [SugarColumn(ColumnName = "FATTACH")]
        public string Fattach { get; set; }
 
        [SugarColumn(ColumnName = "FVERSION")]
        public string Fversion { get; set; }
 
        [SugarColumn(ColumnName = "FDATE")]
        public string Fdate { get; set; }
 
        [SugarColumn(ColumnName = "CREATE_BY")]
        public string CreateBy { get; set; }
 
        [SugarColumn(ColumnName = "CREATE_DATE")]
        public string CreateDate { get; set; }
 
        [SugarColumn(ColumnName = "COMPANY")]
        public string Company { get; set; }
 
        [SugarColumn(ColumnName = "FACTORY")]
        public string Factory { get; set; }
 
        [SugarColumn(ColumnName = "RELEASE_NO")]
        public string ReleaseNo { get; set; }
 
        [SugarColumn(ColumnName = "F_TYPE")]
        public int? F_type { get; set; }
 
        [SugarColumn(ColumnName = "LASTUPDATE_BY")]
        public string LastupdateBy { get; set; }
 
        [SugarColumn(ColumnName = "LASTUPDATE_DATE")]
        public DateTime? LastupdateDate { get; set; }
 
        [SugarColumn(ColumnName = "ITEM_ID")]
        public decimal? ItemId { get; set; }
    }