Merge remote-tracking branch 'origin/0.8.X' into 0.8.X
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删除
|
||||
*/
|
||||
|
||||
@@ -79,5 +79,25 @@ public class CrmSalesObjectionBo 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;
|
||||
|
||||
}
|
||||
|
||||
@@ -97,5 +97,29 @@ public class CrmSalesObjectionVo {
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 产品类别
|
||||
*/
|
||||
@ExcelProperty(value = "产品类别")
|
||||
private String productCategory;
|
||||
|
||||
/**
|
||||
* 返回日期
|
||||
*/
|
||||
@ExcelProperty(value = "返回日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date returnDate;
|
||||
|
||||
/**
|
||||
* 投诉情况
|
||||
*/
|
||||
@ExcelProperty(value = "投诉情况")
|
||||
private String complaintContent;
|
||||
|
||||
/**
|
||||
* 客户诉求
|
||||
*/
|
||||
@ExcelProperty(value = "客户诉求")
|
||||
private String customerDemand;
|
||||
|
||||
}
|
||||
|
||||
@@ -71,6 +71,10 @@ public class CrmSalesObjectionServiceImpl implements ICrmSalesObjectionService {
|
||||
lqw.eq(StringUtils.isNotBlank(bo.getHandleUser()), CrmSalesObjection::getHandleUser, bo.getHandleUser());
|
||||
lqw.eq(bo.getHandleTime() != null, CrmSalesObjection::getHandleTime, bo.getHandleTime());
|
||||
lqw.eq(bo.getCloseTime() != null, CrmSalesObjection::getCloseTime, bo.getCloseTime());
|
||||
lqw.eq(StringUtils.isNotBlank(bo.getProductCategory()), CrmSalesObjection::getProductCategory, bo.getProductCategory());
|
||||
lqw.eq(bo.getReturnDate() != null, CrmSalesObjection::getReturnDate, bo.getReturnDate());
|
||||
lqw.like(StringUtils.isNotBlank(bo.getComplaintContent()), CrmSalesObjection::getComplaintContent, bo.getComplaintContent());
|
||||
lqw.like(StringUtils.isNotBlank(bo.getCustomerDemand()), CrmSalesObjection::getCustomerDemand, bo.getCustomerDemand());
|
||||
return lqw;
|
||||
}
|
||||
|
||||
|
||||
@@ -17,6 +17,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="handleTime" column="handle_time"/>
|
||||
<result property="closeTime" column="close_time"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="productCategory" column="product_category"/>
|
||||
<result property="returnDate" column="return_date"/>
|
||||
<result property="complaintContent" column="complaint_content"/>
|
||||
<result property="customerDemand" column="customer_demand"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
|
||||
Reference in New Issue
Block a user