czt
2024-04-24 47662397ea230dfc5925b6b21a150f8a6d9432d9
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
package com.fzzy.api.entity;
 
import com.bstek.dorado.annotation.PropertyDef;
import com.fzzy.api.Constant;
import lombok.Data;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
 
/**
 * 接口表-检验项目
 *
 * @author he
 */
@Data
@Entity
@Table(name = "GB_CHECK_ITEM")
public class GbCheckItem implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = 3973757456774251170L;
 
    @Id
    @Column(name = "CODE_", length = 20)
    @PropertyDef(label = "接口编码")
    public String code;
 
    @Column(name = "NAME_", length = 20)
    @PropertyDef(label = "名称")
    public String name;
 
    @Column(name = "PARENT_CODE_", length = 20)
    @PropertyDef(label = "父编码")
    public String parentCode = Constant.DEFAULT_CODE;
 
    @Column(name = "DISABLED_TAG_", length = 20)
    @PropertyDef(label = "禁用")
    public String disabledTag;
 
    @Column(name = "BIZ_CODE_", length = 20)
    @PropertyDef(label = "对接系统编码")
    public String bizCode;
 
    @Column(name = "SIMPLE_", length = 2)
    @PropertyDef(label = "简拼")
    public String simple;
 
    @Column(name = "REMARK_", length = 100)
    @PropertyDef(label = "备注说明")
    public String remark;
}