@@ -212,4 +212,13 @@ public class ContractProductVo extends ContractProduct {
*/
private Integer isSettled;
+ /**
+ * 买方名称
+ */
+ private String buyContactName;
+ * 买方联系方式
+ private String buyContactNumber;
+
}
@@ -16,7 +16,9 @@
t2.create_user AS salesmanId,
t2.version AS contractVersion,
t2.contract_template_id AS contractTemplateId,
- t2.currency
+ t2.currency,
+ t2.buy_contact_name,
+ t2.buy_contact_number
FROM contract_product t1
JOIN contract t2 ON t1.contract_id = t2.id
${ew.customSqlSegment}