薪酬系统-福利台账,台账查询增加个税扣缴义务人
This commit is contained in:
parent
bf99fd81c6
commit
1bd20b2686
|
|
@ -27,4 +27,6 @@ public class InsuranceAccountBatchParam extends BaseQueryParam {
|
|||
private String endTime;
|
||||
|
||||
private List<Long> taxAgents;
|
||||
|
||||
private Long paymentOrganization;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -138,6 +138,10 @@
|
|||
AND
|
||||
t.bill_month between #{param.startTime} and #{param.endTime}
|
||||
</if>
|
||||
<if test="param.paymentOrganization != null">
|
||||
AND
|
||||
t.payment_organization = #{param.paymentOrganization}
|
||||
</if>
|
||||
<if test="param.taxAgents != null and param.taxAgents.size() > 0 ">
|
||||
AND
|
||||
t.payment_organization in
|
||||
|
|
|
|||
Loading…
Reference in New Issue