feat(crm): 添加销售异议管理新字段功能
- 在CrmSalesObjection实体类中新增产品类别、返回日期、投诉情况、客户诉求四个字段 - 在CrmSalesObjectionBo业务对象中同步添加对应字段定义 - 在CrmSalesObjectionVo视图对象中添加字段并配置Excel导出注解 - 更新MyBatis映射文件添加数据库字段映射关系 - 在查询条件构建中增加对新增字段的查询支持
This commit is contained in:
@@ -70,6 +70,27 @@ public class CrmSalesObjection extends BaseEntity {
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
/**
|
||||
* 产品类别
|
||||
*/
|
||||
private String productCategory;
|
||||
|
||||
/**
|
||||
* 返回日期
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date returnDate;
|
||||
|
||||
/**
|
||||
* 投诉情况
|
||||
*/
|
||||
private String complaintContent;
|
||||
|
||||
/**
|
||||
* 客户诉求
|
||||
*/
|
||||
private String customerDemand;
|
||||
|
||||
/**
|
||||
* 删除标识 0正常 2删除
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user