功能配置域字典增加region_type字段属性,标识配置域类别,1IP类,2字符串类,3增强字符串类,4数值类,5摘要类,6回调类
This commit is contained in:
@@ -15,6 +15,7 @@ public class FunctionRegionDict extends BaseCfg<FunctionRegionDict> {
|
||||
private String configDistrict;
|
||||
private String configDesc;
|
||||
private Integer isMaat;
|
||||
private Integer regionType;
|
||||
public Integer getDictId() {
|
||||
return dictId;
|
||||
}
|
||||
@@ -57,5 +58,11 @@ public class FunctionRegionDict extends BaseCfg<FunctionRegionDict> {
|
||||
public void setIsMaat(Integer isMaat) {
|
||||
this.isMaat = isMaat;
|
||||
}
|
||||
public Integer getRegionType() {
|
||||
return regionType;
|
||||
}
|
||||
public void setRegionType(Integer regionType) {
|
||||
this.regionType = regionType;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -10,10 +10,11 @@
|
||||
<result column="config_desc" property="configDesc" jdbcType="VARCHAR" />
|
||||
<result column="is_valid" property="isValid" jdbcType="INTEGER" />
|
||||
<result column="is_maat" property="isMaat" jdbcType="INTEGER" />
|
||||
<result column="region_type" property="regionType" jdbcType="INTEGER" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List" >
|
||||
dict_id, function_id, config_region_value,config_region_code, config_district, config_desc, is_valid,is_maat
|
||||
dict_id, function_id, config_region_value,config_region_code, config_district, config_desc, is_valid,is_maat,region_type
|
||||
</sql>
|
||||
<select id="getList" resultMap="BaseResultMap" >
|
||||
select
|
||||
|
||||
Reference in New Issue
Block a user