新增是否合作单位字段
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user