增加查询条件
parent
910b90056d
commit
a0e48c04f8
|
|
@ -34,6 +34,8 @@ public class CorpDepartmentCO extends ClientObject {
|
||||||
private String corpType4;
|
private String corpType4;
|
||||||
@ApiModelProperty(value = "企业状态")
|
@ApiModelProperty(value = "企业状态")
|
||||||
private String corpState;
|
private String corpState;
|
||||||
|
@ApiModelProperty(value = "企业状态名称")
|
||||||
|
private String corpStateName;
|
||||||
@ApiModelProperty(value = "是否启用,1:启用,0:关闭")
|
@ApiModelProperty(value = "是否启用,1:启用,0:关闭")
|
||||||
private Integer useFlag;
|
private Integer useFlag;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,8 @@ public class CorpDepartmentE extends ClientObject {
|
||||||
private String corpType4;
|
private String corpType4;
|
||||||
@ApiModelProperty(value = "企业状态")
|
@ApiModelProperty(value = "企业状态")
|
||||||
private String corpState;
|
private String corpState;
|
||||||
|
@ApiModelProperty(value = "企业状态名称")
|
||||||
|
private String corpStateName;
|
||||||
@ApiModelProperty(value = "是否启用,1:启用,0:关闭")
|
@ApiModelProperty(value = "是否启用,1:启用,0:关闭")
|
||||||
private Integer useFlag;
|
private Integer useFlag;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
<if test="params.eqVillage != null and params.eqVillage.trim() != ''">
|
<if test="params.eqVillage != null and params.eqVillage.trim() != ''">
|
||||||
AND c.village = #{params.eqVillage}
|
AND c.village = #{params.eqVillage}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.eqUseFlag != null and params.eqUseFlag.trim() != ''">
|
<if test="params.eqUseFlag != null ">
|
||||||
AND c.use_flag = #{params.eqUseFlag}
|
AND c.use_flag = #{params.eqUseFlag}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.eqCorpState != null and params.eqCorpState.trim() != ''">
|
<if test="params.eqCorpState != null and params.eqCorpState.trim() != ''">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue