| package com.xzx.gc.order.dto;  | 
|   | 
|   | 
| import com.xzx.gc.model.CommonReq;  | 
| import io.swagger.annotations.ApiModelProperty;  | 
| import lombok.Data;  | 
|   | 
| @Data  | 
| public class OrderComplaintAddDto extends CommonReq {  | 
|   | 
|     @ApiModelProperty("订单id")  | 
|     private String orderId;  | 
|   | 
|     @ApiModelProperty("投诉原因")  | 
|     private String complaintReason;  | 
|   | 
|     @ApiModelProperty("投诉类型取数值(1:长时间未到场2:电话联系不上接单员3:服务态度恶劣 4:回收价格有异议 5:其他)")  | 
|     private Integer complaintType;  | 
| }  |