Commit d6bae54b authored by knight's avatar knight Committed by wux

需求32 客户投诉页面和列表调整

parent e668f8c6
...@@ -26,7 +26,7 @@ public interface CustomerComplaintMapper extends BaseMapperX<CustomerComplaintDO ...@@ -26,7 +26,7 @@ public interface CustomerComplaintMapper extends BaseMapperX<CustomerComplaintDO
@ResultType(CustomerComplaintRespVO.class) @ResultType(CustomerComplaintRespVO.class)
@Select({ @Select({
"<script>", "<script>",
"select plaint.*, admin.nickname as admin_nickname, customer.name as customer_name ", "select plaint.*, admin.nickname as admin_nickname, customer.name as customer_name , customer.number as customer_number",
"from ecw_customer_complaint plaint ", "from ecw_customer_complaint plaint ",
"left join system_user admin on plaint.admin_id = admin.id ", "left join system_user admin on plaint.admin_id = admin.id ",
"LEFT JOIN ecw_customer customer ON plaint.customer_id = customer.id ", "LEFT JOIN ecw_customer customer ON plaint.customer_id = customer.id ",
......
...@@ -18,4 +18,7 @@ public class CustomerComplaintRespVO extends CustomerComplaintBaseVO { ...@@ -18,4 +18,7 @@ public class CustomerComplaintRespVO extends CustomerComplaintBaseVO {
@ApiModelProperty("客户名称") @ApiModelProperty("客户名称")
private String customerName; private String customerName;
@ApiModelProperty("客户编号")
private String customerNumber;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment