|
|
@@ -1,22 +1,16 @@
|
|
|
package org.dromara.customer.domain.vo;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import org.dromara.customer.domain.CustomerInfo;
|
|
|
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
import cn.idev.excel.annotation.ExcelProperty;
|
|
|
-import org.dromara.common.excel.annotation.ExcelDictFormat;
|
|
|
-import org.dromara.common.excel.convert.ExcelDictConvert;
|
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
|
|
import lombok.Data;
|
|
|
-import org.dromara.customer.domain.bo.CustomerBusinessInfoBo;
|
|
|
-import org.dromara.customer.domain.bo.CustomerContactBo;
|
|
|
-import org.dromara.customer.domain.bo.CustomerSalesInfoBo;
|
|
|
+import org.dromara.common.excel.annotation.ExcelDictFormat;
|
|
|
+import org.dromara.common.excel.convert.ExcelDictConvert;
|
|
|
+import org.dromara.customer.domain.CustomerInfo;
|
|
|
|
|
|
import java.io.Serial;
|
|
|
import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
@@ -233,6 +227,27 @@ public class CustomerInfoVo implements Serializable {
|
|
|
@ExcelProperty(value = "备注")
|
|
|
private String remark;
|
|
|
|
|
|
+ /**
|
|
|
+ * 业务负责人
|
|
|
+ */
|
|
|
+ private Long salesPersonId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 客服支持
|
|
|
+ */
|
|
|
+ private Long serviceStaffId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 所属部门
|
|
|
+ */
|
|
|
+ private Long belongingDepartmentId;
|
|
|
+
|
|
|
+ private String salesPersonName;
|
|
|
+
|
|
|
+ private String serviceStaffName;
|
|
|
+
|
|
|
+ private String belongingDepartmentName;
|
|
|
+
|
|
|
/*部门额度*/
|
|
|
private BigDecimal deptCredit;
|
|
|
|