Commit 8df44119 by Mahjong

线上来佣比对新增备注

parent 159a3b6e
......@@ -49,6 +49,7 @@ public class ComeCommissionVO {
private Long s3Id;
private Long policyTrackingStatus;//保单跟踪状态
private String policyInputSource;//保单出单来源
private String remark;//备注
public Long getOrderId() {
return orderId;
}
......@@ -420,4 +421,12 @@ public class ComeCommissionVO {
public void setPolicyInputSource(String policyInputSource) {
this.policyInputSource = policyInputSource;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
......@@ -49,7 +49,8 @@
o.policy_tracking_status policyTrackingStatus,
o.policy_input_source policyInputSource,
o.cover_term_type coverageTerm,
CONCAT(o.payment_term, (case o.payment_term_unit when 'Y' then '年' when 'M' then '月' else '年' END)) payTerm
CONCAT(o.payment_term, (case o.payment_term_unit when 'Y' then '年' when 'M' then '月' else '年' END)) payTerm,
oc.remark
from ag_po_order_commission oc
inner join
(SELECT id, order_price, product_id,
......@@ -153,7 +154,8 @@
null as policyTrackingStatus,
null as policyInputSource,
null as coverageTerm,
null as payTerm
null as payTerm,
oc.remark
from ag_po_order_commission oc
left join ag_product_life_commission_base b on oc.commission_base_id = b.id
where oc.order_id is null
......
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