Commit 094ba2bd by wenyang Committed by jianan

渠道规则开发3(发佣检核查询与导出、发佣关账查询与导出 增加渠道查询条件)

parent 0d281f9d
......@@ -67,6 +67,14 @@ public class CommissionPayoutStatusQueryRequestVO {
private Long s3Id;
private Long s2Id;
private Long s1Id;
/**
* 渠道Id
*/
private Long channelId;
/**
* 渠道类型: 对公:1; 对私:2
*/
private String channelType;
private PageInfo<CommissionPayoutStatus> page;
......@@ -212,5 +220,22 @@ public class CommissionPayoutStatusQueryRequestVO {
public void setCommissionTypeDropOptionCodeList(List<String> commissionTypeDropOptionCodeList) {
this.commissionTypeDropOptionCodeList = commissionTypeDropOptionCodeList;
}
public Long getChannelId() {
return channelId;
}
public void setChannelId(Long channelId) {
this.channelId = channelId;
}
public String getChannelType() {
return channelType;
}
public void setChannelType(String channelType) {
this.channelType = channelType;
}
}
......@@ -45,6 +45,8 @@ public class ExportFortunePayRequestVO {
private Long s3Id;
private Long s2Id;
private Long s1Id;
private Long channelId;
private String channelType;
/**
* 获取 预计发佣年月
......@@ -205,4 +207,21 @@ public class ExportFortunePayRequestVO {
", commissionPayoutStatus=" + commissionPayoutStatus +
'}';
}
public Long getChannelId() {
return channelId;
}
public void setChannelId(Long channelId) {
this.channelId = channelId;
}
public String getChannelType() {
return channelType;
}
public void setChannelType(String channelType) {
this.channelType = channelType;
}
}
......@@ -48,4 +48,7 @@ public class WithdrawQueryRequestVO {
private Long s3Id;
private Long s2Id;
private Long s1Id;
private Long channelId;
private String channelType;
}
......@@ -44,6 +44,7 @@ public class WithdrawQueryInfo {
*/
List<Long> subsystemIdList;
private Long channelId;
private String channelType;
}
......@@ -310,6 +310,9 @@
left join ag_acl_channel_new cha ON cha.customer_id = f.customer_id
where
(setting.practitioner_type_id=28 or f.settlement_type='3')
<if test="item.channelId != null">
and cha.id = #{item.channelId,jdbcType=BIGINT}
</if>
<if test="item.channelType != null">
and f.channel_type = #{item.channelType,jdbcType=VARCHAR}
</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