机构增加机构类型字段
This commit is contained in:
parent
e8c3742e36
commit
46092e1864
@ -18,6 +18,7 @@
|
|||||||
<result column="institution_region_area" property="institutionRegionArea"/>
|
<result column="institution_region_area" property="institutionRegionArea"/>
|
||||||
<result column="institution_region_village" property="institutionRegionVillage"/>
|
<result column="institution_region_village" property="institutionRegionVillage"/>
|
||||||
<result column="institution_region_street" property="institutionRegionStreet"/>
|
<result column="institution_region_street" property="institutionRegionStreet"/>
|
||||||
|
<result column="institution_type" property="institutionType"/>
|
||||||
<result column="creator" property="creator"/>
|
<result column="creator" property="creator"/>
|
||||||
<result column="gmt_create" property="gmtCreate"/>
|
<result column="gmt_create" property="gmtCreate"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
@ -38,6 +39,7 @@
|
|||||||
<result column="institution_region_area" property="institutionRegionArea"/>
|
<result column="institution_region_area" property="institutionRegionArea"/>
|
||||||
<result column="institution_region_village" property="institutionRegionVillage"/>
|
<result column="institution_region_village" property="institutionRegionVillage"/>
|
||||||
<result column="institution_region_street" property="institutionRegionStreet"/>
|
<result column="institution_region_street" property="institutionRegionStreet"/>
|
||||||
|
<result column="institution_type" property="institutionType"/>
|
||||||
<result column="creator" property="creator"/>
|
<result column="creator" property="creator"/>
|
||||||
<result column="gmt_create" property="gmtCreate"/>
|
<result column="gmt_create" property="gmtCreate"/>
|
||||||
<result column="modifier" property="modifier"/>
|
<result column="modifier" property="modifier"/>
|
||||||
@ -61,6 +63,7 @@
|
|||||||
<result column="institution_region_area" property="institutionRegionArea"/>
|
<result column="institution_region_area" property="institutionRegionArea"/>
|
||||||
<result column="institution_region_village" property="institutionRegionVillage"/>
|
<result column="institution_region_village" property="institutionRegionVillage"/>
|
||||||
<result column="institution_region_street" property="institutionRegionStreet"/>
|
<result column="institution_region_street" property="institutionRegionStreet"/>
|
||||||
|
<result column="institution_type" property="institutionType"/>
|
||||||
<result column="creator" property="creator"/>
|
<result column="creator" property="creator"/>
|
||||||
<result column="gmt_create" property="gmtCreate"/>
|
<result column="gmt_create" property="gmtCreate"/>
|
||||||
<result column="modifier" property="modifier"/>
|
<result column="modifier" property="modifier"/>
|
||||||
@ -86,6 +89,7 @@
|
|||||||
institution_region_area,
|
institution_region_area,
|
||||||
institution_region_village,
|
institution_region_village,
|
||||||
institution_region_street,
|
institution_region_street,
|
||||||
|
institution_type,
|
||||||
creator,
|
creator,
|
||||||
gmt_create,
|
gmt_create,
|
||||||
modifier,
|
modifier,
|
||||||
@ -107,6 +111,7 @@
|
|||||||
#{institutionRegionArea},
|
#{institutionRegionArea},
|
||||||
#{institutionRegionVillage},
|
#{institutionRegionVillage},
|
||||||
#{institutionRegionStreet},
|
#{institutionRegionStreet},
|
||||||
|
#{institutionType}
|
||||||
#{creator},
|
#{creator},
|
||||||
#{gmtCreate},
|
#{gmtCreate},
|
||||||
#{modifier},
|
#{modifier},
|
||||||
@ -187,6 +192,9 @@
|
|||||||
</if>
|
</if>
|
||||||
<if test="institutionRegionStreet != null and institutionRegionStreet != ''">
|
<if test="institutionRegionStreet != null and institutionRegionStreet != ''">
|
||||||
institution_region_street = #{institutionRegionStreet},
|
institution_region_street = #{institutionRegionStreet},
|
||||||
|
</if>
|
||||||
|
<if test="institutionType != null and institutionType != ''">
|
||||||
|
institution_type = #{institutionType},
|
||||||
</if>
|
</if>
|
||||||
gmt_modified = #{gmtModified},
|
gmt_modified = #{gmtModified},
|
||||||
modifier = #{modifier},
|
modifier = #{modifier},
|
||||||
@ -212,6 +220,7 @@
|
|||||||
t1.institution_region_area,
|
t1.institution_region_area,
|
||||||
t1.institution_region_village,
|
t1.institution_region_village,
|
||||||
t1.institution_region_street,
|
t1.institution_region_street,
|
||||||
|
t1.institution_type,
|
||||||
t1.institution_id
|
t1.institution_id
|
||||||
FROM
|
FROM
|
||||||
m_institution t1
|
m_institution t1
|
||||||
@ -241,6 +250,7 @@
|
|||||||
t1.institution_region_area,
|
t1.institution_region_area,
|
||||||
t1.institution_region_village,
|
t1.institution_region_village,
|
||||||
t1.institution_region_street,
|
t1.institution_region_street,
|
||||||
|
t1.institution_type,
|
||||||
t1.creator,
|
t1.creator,
|
||||||
t1.gmt_create,
|
t1.gmt_create,
|
||||||
t1.modifier,
|
t1.modifier,
|
||||||
@ -274,6 +284,7 @@
|
|||||||
t1.institution_region_area,
|
t1.institution_region_area,
|
||||||
t1.institution_region_village,
|
t1.institution_region_village,
|
||||||
t1.institution_region_street,
|
t1.institution_region_street,
|
||||||
|
t1.institution_type,
|
||||||
t1.creator,
|
t1.creator,
|
||||||
t1.gmt_create,
|
t1.gmt_create,
|
||||||
t1.modifier,
|
t1.modifier,
|
||||||
@ -307,6 +318,7 @@
|
|||||||
t1.institution_region_area,
|
t1.institution_region_area,
|
||||||
t1.institution_region_village,
|
t1.institution_region_village,
|
||||||
t1.institution_region_street,
|
t1.institution_region_street,
|
||||||
|
t1.institution_type,
|
||||||
t1.creator,
|
t1.creator,
|
||||||
t1.gmt_create
|
t1.gmt_create
|
||||||
FROM
|
FROM
|
||||||
@ -334,6 +346,10 @@
|
|||||||
#{institutionIds[${index}]}
|
#{institutionIds[${index}]}
|
||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
|
<if test="institutionType != null and institutionType != ''">
|
||||||
|
AND
|
||||||
|
t1.institution_type = #{institutionType}
|
||||||
|
</if>
|
||||||
ORDER BY t1.gmt_create DESC
|
ORDER BY t1.gmt_create DESC
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -355,6 +371,7 @@
|
|||||||
t1.institution_region_area,
|
t1.institution_region_area,
|
||||||
t1.institution_region_village,
|
t1.institution_region_village,
|
||||||
t1.institution_region_street,
|
t1.institution_region_street,
|
||||||
|
t1.institution_type,
|
||||||
t1.creator,
|
t1.creator,
|
||||||
t1.gmt_create,
|
t1.gmt_create,
|
||||||
t1.modifier,
|
t1.modifier,
|
||||||
@ -385,6 +402,10 @@
|
|||||||
#{institutionIds[${index}]}
|
#{institutionIds[${index}]}
|
||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
|
<if test="institutionType != null and institutionType != ''">
|
||||||
|
AND
|
||||||
|
t1.institution_type = #{institutionType}
|
||||||
|
</if>
|
||||||
ORDER BY t1.gmt_create DESC
|
ORDER BY t1.gmt_create DESC
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -436,6 +457,10 @@
|
|||||||
#{institutionIds[${index}]}
|
#{institutionIds[${index}]}
|
||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
|
<if test="institutionType != null and institutionType != ''">
|
||||||
|
AND
|
||||||
|
t1.institution_type = #{institutionType}
|
||||||
|
</if>
|
||||||
ORDER BY t1.gmt_create DESC
|
ORDER BY t1.gmt_create DESC
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
@ -25,6 +25,7 @@ public class InstitutionBO {
|
|||||||
private String institutionRegionArea;
|
private String institutionRegionArea;
|
||||||
private String institutionRegionVillage;
|
private String institutionRegionVillage;
|
||||||
private String institutionRegionStreet;
|
private String institutionRegionStreet;
|
||||||
|
private String institutionType;
|
||||||
private String creator;
|
private String creator;
|
||||||
private String gmtCreate;
|
private String gmtCreate;
|
||||||
private String modifier;
|
private String modifier;
|
||||||
@ -192,4 +193,11 @@ public class InstitutionBO {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public String getInstitutionType() {
|
||||||
|
return institutionType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInstitutionType(String institutionType) {
|
||||||
|
this.institutionType = institutionType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,9 +44,11 @@ public class InstitutionDTO {
|
|||||||
private String institutionRegionVillage;
|
private String institutionRegionVillage;
|
||||||
@ApiModelProperty(name = "institutionRegionStreet", value = "行政区化-街")
|
@ApiModelProperty(name = "institutionRegionStreet", value = "行政区化-街")
|
||||||
private String institutionRegionStreet;
|
private String institutionRegionStreet;
|
||||||
@ApiModelProperty(name = "creator", value = "")
|
@ApiModelProperty(name = "institutionType", value = "机构类型")
|
||||||
|
private String institutionType;
|
||||||
|
@ApiModelProperty(name = "creator", value = "创建人")
|
||||||
private String creator;
|
private String creator;
|
||||||
@ApiModelProperty(name = "gmtCreate", value = "")
|
@ApiModelProperty(name = "gmtCreate", value = "创建时间")
|
||||||
private String gmtCreate;
|
private String gmtCreate;
|
||||||
|
|
||||||
public String getInstitutionId() {
|
public String getInstitutionId() {
|
||||||
@ -185,5 +187,11 @@ public class InstitutionDTO {
|
|||||||
this.gmtCreate = gmtCreate;
|
this.gmtCreate = gmtCreate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getInstitutionType() {
|
||||||
|
return institutionType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInstitutionType(String institutionType) {
|
||||||
|
this.institutionType = institutionType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,7 @@ public class InstitutionPO {
|
|||||||
private String institutionRegionArea;
|
private String institutionRegionArea;
|
||||||
private String institutionRegionVillage;
|
private String institutionRegionVillage;
|
||||||
private String institutionRegionStreet;
|
private String institutionRegionStreet;
|
||||||
|
private String institutionType;
|
||||||
private String creator;
|
private String creator;
|
||||||
private String gmtCreate;
|
private String gmtCreate;
|
||||||
private String modifier;
|
private String modifier;
|
||||||
@ -192,4 +193,11 @@ public class InstitutionPO {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public String getInstitutionType() {
|
||||||
|
return institutionType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInstitutionType(String institutionType) {
|
||||||
|
this.institutionType = institutionType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,8 @@ public class InstitutionVO {
|
|||||||
private String institutionRegionVillage;
|
private String institutionRegionVillage;
|
||||||
@ApiModelProperty(name = "institutionRegionStreet", value = "行政区化-街")
|
@ApiModelProperty(name = "institutionRegionStreet", value = "行政区化-街")
|
||||||
private String institutionRegionStreet;
|
private String institutionRegionStreet;
|
||||||
|
@ApiModelProperty(name = "institutionType", value = "机构类型")
|
||||||
|
private String institutionType;
|
||||||
|
|
||||||
public String getInstitutionName() {
|
public String getInstitutionName() {
|
||||||
return institutionName == null ? "" : institutionName.trim();
|
return institutionName == null ? "" : institutionName.trim();
|
||||||
@ -157,5 +159,11 @@ public class InstitutionVO {
|
|||||||
this.institutionRegionStreet = institutionRegionStreet;
|
this.institutionRegionStreet = institutionRegionStreet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getInstitutionType() {
|
||||||
|
return institutionType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInstitutionType(String institutionType) {
|
||||||
|
this.institutionType = institutionType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user