Commit d409044e by huluobin

# 费用系统 审批列表改成根据用户id搜索

parent 2ce5e2d9
......@@ -41,5 +41,5 @@ public class CheckCostListReq {
private Integer costStatus;
@ApiModelProperty("创建人(模糊搜索) ")
private String createUsername;
private String createUserId;
}
......@@ -466,8 +466,8 @@
<if test="req.costStatus!=null ">
and t1.cost_status = #{req.costStatus}
</if>
<if test="req.createUsername!=null and req.createUsername!='' ">
and t1.create_username = #{req.createUsername}
<if test="req.createUserId!=null ">
and t1.create_userid = #{req.createUserId}
</if>
</sql>
......
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