@@ -28,7 +28,7 @@ public class AccountRunningWater extends BasePo {
private Long accountManagementId;
/**
- * 账户-管理表ID
+ * 业务ID
*/
private Long businessId;
@@ -39,6 +39,11 @@ public class AccountRequestFundsVo extends AccountRequestFunds {
private String accountPaymentStatus;
+ * 付款账户名称
+ */
+ private String accountManagementName;
+
+ /**
* 打款金额
private BigDecimal accountPaymentAmount;
@@ -24,9 +24,11 @@
arf.create_time,
arf.update_user,
arf.update_time,
- ap.`status` accountPaymentStatus
+ ap.`status` accountPaymentStatus,
+ am.alias accountManagementName
from account_request_funds arf
left join account_payment ap on arf.id = ap.business_id
+ left join account_management am on arf.account_management_id = am.id
${ew.customSqlSegment}
</select>
@@ -88,6 +88,10 @@ public class CustomerController {
customerService.updateById(dto);
}
+ * 最新跟进(客户画像)