新增是否合作单位字段

This commit is contained in:
2024-10-27 15:17:31 +08:00
parent 8b55c2d2c3
commit 04f3995205
2 changed files with 18 additions and 11 deletions

View File

@@ -68,6 +68,9 @@
<if test="param.leaderId != null"> <if test="param.leaderId != null">
AND a.leader_id = #{param.leaderId} AND a.leader_id = #{param.leaderId}
</if> </if>
<if test="param.isCoop != null">
AND a.is_coop = #{param.isCoop}
</if>
<if test="param.estateOnly != null"> <if test="param.estateOnly != null">
AND a.estate IS NOT null AND a.estate IS NOT null
</if> </if>

View File

@@ -114,6 +114,10 @@ public class OrganizationParam extends BaseParam {
@QueryField(type = QueryType.EQ) @QueryField(type = QueryType.EQ)
private Integer leaderId; private Integer leaderId;
@ApiModelProperty(value = "是否合作单位")
@QueryField(type = QueryType.EQ)
private Integer isCoop;
@ApiModelProperty(value = "备注") @ApiModelProperty(value = "备注")
private String comments; private String comments;