demand: TMS系统-提成管理-运单提成明细:新增查询条件支持按支付方式查询
committer: heyu
This commit is contained in:
parent
27f4e5fcc4
commit
911bc976ef
@ -84,6 +84,8 @@ public class EmisCommissionDtl extends BaseEntity
|
||||
private String confirmSiteNote;
|
||||
/* 确认网点代码 */
|
||||
private String confirmSiteCode;
|
||||
/* 支付方式 */
|
||||
private String paymentType;
|
||||
|
||||
// 扩展参数
|
||||
// 关联运单信息
|
||||
|
||||
@ -163,6 +163,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="createTime != null "> and a.create_time = #{createTime}</if>
|
||||
<if test="updateBy != null and updateBy != ''"> and a.update_by like concat('%', #{updateBy}, '%')</if>
|
||||
<if test="updateTime != null "> and a.update_time = #{updateTime}</if>
|
||||
<if test="paymentType != null "> and b.payment_type = #{paymentType}</if>
|
||||
<if test="createSite != null and createSite != ''"> and a.create_site like concat('%', #{createSite}, '%')</if>
|
||||
<if test="updateSite != null and updateSite != ''"> and a.update_site like concat('%', #{updateSite}, '%')</if>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user