Commit 60df76bc authored by 周健威's avatar 周健威

添加角色列表接口

parent 5db5789a
......@@ -38,4 +38,6 @@ public class BaseUserDTO extends PageParam implements DataInter {
List<Integer> dataCompanyIds;
Integer bizType;
Integer status;
}
......@@ -72,6 +72,9 @@
LEFT JOIN company_info ci ON u.corporation_id=ci.id
<where>
u.is_del = 0
<if test="status != null">
and u.status = #{status}
</if>
<if test="bizType != null">
and u.biz_type = #{bizType}
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment