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
package com.vci.ubcs.code.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.vci.ubcs.starter.constant.CodeTableNameConstant;
import com.vci.ubcs.starter.revision.model.BaseModel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 分类码段的码值
 * 相当于级联的下拉框
 * @author ludc
 * @date 2023/4/5
 */
@Data
@TableName(CodeTableNameConstant.PL_CODE_CLASSIFYVALUE)
@ApiModel(value = "CodeClassify对象", description = "分类码段的码值")
@EqualsAndHashCode(callSuper = true)
public class CodeClassifyValue extends BaseModel {
 
    /**
     * 序列化
     */
    private static final long serialVersionUID = 5238387322464830032L;
 
    /**
     * 分类码段主键
     */
    //@VciUseRefer(MdmBtmTypeConstant.CODE_BASIC_SEC)
    private String codeClassifySecOid;
 
    /**
     * 分类码值
     */
    private String id;
 
    /**
     * 分类名称
     */
    private String name;
 
    /**
     * 码值序号
     */
    private Integer orderNum;
 
    /**
     * 上级分类码值主键
     */
    private String parentClassifyValueOid;
 
}