xiejun
2023-09-05 5dfeea9832eda1732477d4b8adfb1ced95d04704
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
package com.vci.ubcs.code.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
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 io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 系统集成接口的参数对象
 *
 * @author weidy
 * @date 2022-04-11
 */
@Data
@TableName(CodeTableNameConstant.PL_CODE_SYSINTPAREMTER)
@ApiModel(value = "DockingSysIntParam", description = "集成接口-接口的参数对象")
@EqualsAndHashCode(callSuper = true)
public class DockingSysIntParam  extends BaseModel {
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = 4615707118871819648L;
 
    /**
     * SysIntInfoDO 的oid
     */
    @ApiModelProperty(value = "接口配置主键")
    private String infoOid;
 
    /**
     * 参数key
     */
    @ApiModelProperty(value = "参数key")
    private String paramKey;
 
    /**
     * 参数value
     */
    @ApiModelProperty(value = "参数value")
    private String paramValue;
    /**
     * 是否使用
     */
    @ApiModelProperty(value = "是否使用")
    private String usedFlag;
    /**
     * 是否使用显示值
     */
    @ApiModelProperty(value = "是否使用显示值")
    @TableField(exist = false)
    private String usedFlagText;
 
    @Override
    public String toString() {
        return "DockingSysIntParamVO{" +
            "infoOid='" + infoOid + '\'' +
            ", paramKey='" + paramKey + '\'' +
            ", paramValue='" + paramValue + '\'' +
            '}';
    }
}