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;
|
|
/****
|
* 接口头协议
|
*/
|
@Data
|
@TableName(CodeTableNameConstant.PL_CODE_SYSINTPAREMTER)
|
@ApiModel(value = "DockingSysIntHeader", description = "集成接口-接口头协议对象")
|
@EqualsAndHashCode(callSuper = true)
|
public class DockingSysIntHeader extends BaseModel {
|
|
/**
|
* 禁止修改这个值
|
*/
|
private static final long serialVersionUID = 4615707117938037102L;
|
|
/**
|
* SysIntInfoDO 的oid
|
*/
|
@ApiModelProperty(value = "配置主键")
|
|
private String infoOid;
|
|
/**
|
* 参数key
|
*/
|
@ApiModelProperty(value = "配置主键")
|
private String headerKey;
|
|
/**
|
* 参数value
|
*/
|
@ApiModelProperty(value = "配置主键")
|
@TableField(value = "headeralue")
|
private String headerValue;
|
|
/**
|
* 是否使用
|
*/
|
@ApiModelProperty(value = "配置主键")
|
private String usedFlag;
|
|
/**
|
* 是否使用
|
*/
|
@ApiModelProperty(value = "配置主键")
|
@TableField(exist = true)
|
private String usedFlagText;
|
|
}
|