增加查询条件

main
zhaokai 2026-01-14 09:24:49 +08:00
parent 910b90056d
commit a0e48c04f8
3 changed files with 5 additions and 1 deletions

View File

@ -34,6 +34,8 @@ public class CorpDepartmentCO extends ClientObject {
private String corpType4;
@ApiModelProperty(value = "企业状态")
private String corpState;
@ApiModelProperty(value = "企业状态名称")
private String corpStateName;
@ApiModelProperty(value = "是否启用1:启用,0:关闭")
private Integer useFlag;

View File

@ -37,6 +37,8 @@ public class CorpDepartmentE extends ClientObject {
private String corpType4;
@ApiModelProperty(value = "企业状态")
private String corpState;
@ApiModelProperty(value = "企业状态名称")
private String corpStateName;
@ApiModelProperty(value = "是否启用1:启用,0:关闭")
private Integer useFlag;

View File

@ -37,7 +37,7 @@
<if test="params.eqVillage != null and params.eqVillage.trim() != ''">
AND c.village = #{params.eqVillage}
</if>
<if test="params.eqUseFlag != null and params.eqUseFlag.trim() != ''">
<if test="params.eqUseFlag != null ">
AND c.use_flag = #{params.eqUseFlag}
</if>
<if test="params.eqCorpState != null and params.eqCorpState.trim() != ''">