|
|
|
@ -2,6 +2,7 @@ package cn.estsh.i3plus.pojo.platform.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.ImppEnumUtil;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
@ -35,6 +36,14 @@ public class SysConfig extends BaseBean {
|
|
|
|
|
@ApiParam(value ="名称")
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
@Column(name="SOFT_TYPE")
|
|
|
|
|
@ApiParam(value ="产品类型")
|
|
|
|
|
private Integer softType;
|
|
|
|
|
|
|
|
|
|
public String getSoftTypeTxt() {
|
|
|
|
|
return softType == null ? null : CommonEnumUtil.SOFT_TYPE.valueOfDescription(softType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name="CONFIG_TYPE")
|
|
|
|
|
@ApiParam(value ="参数类型ID(枚举:1.系统配置...)" , example ="-1")
|
|
|
|
|
private Integer configType;
|
|
|
|
|