新增:UserVerify新增organizationId字段
This commit is contained in:
@@ -65,6 +65,9 @@ public class UserVerify implements Serializable {
|
|||||||
@ApiModelProperty(value = "审核人")
|
@ApiModelProperty(value = "审核人")
|
||||||
private Integer adminId;
|
private Integer adminId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "机构ID")
|
||||||
|
private Integer organizationId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "备注")
|
@ApiModelProperty(value = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -38,6 +38,12 @@
|
|||||||
<if test="param.zzCode != null">
|
<if test="param.zzCode != null">
|
||||||
AND a.zz_code = #{param.zzCode}
|
AND a.zz_code = #{param.zzCode}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="param.adminId != null">
|
||||||
|
AND a.admin_id = #{param.adminId}
|
||||||
|
</if>
|
||||||
|
<if test="param.organizationId != null">
|
||||||
|
AND a.organization_id = #{param.organizationId}
|
||||||
|
</if>
|
||||||
<if test="param.comments != null">
|
<if test="param.comments != null">
|
||||||
AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
|
AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
@@ -57,6 +57,14 @@ public class UserVerifyParam extends BaseParam {
|
|||||||
@QueryField(type = QueryType.EQ)
|
@QueryField(type = QueryType.EQ)
|
||||||
private String zzCode;
|
private String zzCode;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "管理员ID")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private Integer adminId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "机构ID")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private Integer organizationId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "备注")
|
@ApiModelProperty(value = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user