Commit a3f1ed10 by zhangxingmin

push

parent dd60f236
...@@ -42,4 +42,9 @@ public class ApiSalarySplitSummaryPageRequest extends PageDto { ...@@ -42,4 +42,9 @@ public class ApiSalarySplitSummaryPageRequest extends PageDto {
* 出账机构 * 出账机构
*/ */
private String billOrg; private String billOrg;
/**
* 出账业务编号
*/
private String businessNo;
} }
...@@ -83,6 +83,9 @@ ...@@ -83,6 +83,9 @@
<if test="request.billOrg != null and request.billOrg != ''"> <if test="request.billOrg != null and request.billOrg != ''">
and ss.bill_org like concat('%', #{request.billOrg}, '%') and ss.bill_org like concat('%', #{request.billOrg}, '%')
</if> </if>
<if test="request.businessNo != null and request.businessNo != ''">
and fa.business_no like concat('%', #{request.businessNo}, '%')
</if>
and ss.is_deleted = 0 and ss.is_deleted = 0
</where> </where>
</select> </select>
......
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