package com.vci.ubcs.code.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.vci.starter.web.annotation.Column;
|
import com.vci.starter.web.annotation.VciBtmType;
|
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
|
import com.vci.starter.web.model.BaseModel;
|
import com.vci.ubcs.code.constant.MdmBtmTypeConstant;
|
|
/**
|
* Description: 系统集成接口的认证
|
*
|
* @author: wangyi
|
* @date: Created on 2022/3/7
|
*/
|
@VciBtmType(name = MdmBtmTypeConstant.SYS_INT_HEADER,text = "系统集成接口的认证",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE,startStatus = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
|
@TableName("PL_CODE_SYSINTHEADER")
|
public class SysIntHeaderDO extends BaseModel {
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 1144067849291882385L;
|
|
/**
|
* SysIntInfoDO 的oid
|
*/
|
@Column(columnDefinition = "接口oid")
|
private String infoOid;
|
|
/**
|
* 参数key
|
*/
|
@Column(columnDefinition = "参数key")
|
private String headerkey;
|
|
/**
|
* 参数value
|
*/
|
@Column(columnDefinition = "参数value")
|
private String headeralue;
|
|
/**
|
* 是否使用
|
*/
|
@Column(columnDefinition = "是否使用")
|
private String usedflag;
|
|
|
public String getInfoOid() {
|
return infoOid;
|
}
|
|
public void setInfoOid(String infoOid) {
|
this.infoOid = infoOid;
|
}
|
|
public String getHeaderkey() {
|
return headerkey;
|
}
|
|
public void setHeaderkey(String headerkey) {
|
this.headerkey = headerkey;
|
}
|
|
public String getHeaderalue() {
|
return headeralue;
|
}
|
|
public void setHeaderalue(String headeralue) {
|
this.headeralue = headeralue;
|
}
|
|
public String getUsedflag() {
|
return usedflag;
|
}
|
|
public void setUsedflag(String usedflag) {
|
this.usedflag = usedflag;
|
}
|
|
@Override
|
public String toString() {
|
return "SysIntHeaderDO{" +
|
"infoOid='" + infoOid + '\'' +
|
", headerkey='" + headerkey + '\'' +
|
", headeralue='" + headeralue + '\'' +
|
", usedflag='" + usedflag + '\'' +
|
'}';
|
}
|
}
|