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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
| package com.zbooksoft.gdmis.data.entity;
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| /**
| * @Description:实物样品信息
| * @Author: zhai
| * @Date: 2024/10/18
| **/
|
| @TableName("CAT_FILE_SWYP")
| @Data
| public class CatSwyp {
| /**
| * 主键
| */
| @TableId(type = IdType.ID_WORKER)
| private Long id;
|
|
| private Long ajId;
|
| // XMMC
| private String xmmc;
| // XMBH
| private String xmbh;
| // DCCHC
| private String dcchc;
| // DCHY
| private String dchy;
| // DCQU
| private String dcqu;
| // DCSJ
| private String dcsj;
| // JYR
| private String jyr;
| // SYR
| private String syr;
| // SYRQ
| private String syrq;
| // ZWMC
| private String zwmc;
| // YPBH
| private String ypbh;
| // CYFS
| private String cyfs;
| // YPLX
| private String yplx;
| // JD
| private String jd;
| // WD
| private String wd;
| // SS
| private String ss;
| // YPZL
| private String ypzl;
| // YPCD
| private String ypcd;
| // YPCW
| private String ypcw;
| // ZKHC
| private String zkhc;
| // QSSD
| private String qssd;
| // JSSD
| private String jssd;
| // BZ
| private String bz;
| // XH
| private String xh;
| // ZLZT
| private String zlzt;
| }
|
|