|  |  | 
 |  |  | package com.mzl.flower.dto.response.content; | 
 |  |  |  | 
 |  |  | import com.mzl.flower.base.AbstractTransDTO; | 
 |  |  | import com.mzl.flower.base.annotation.DictTrans; | 
 |  |  | import io.swagger.annotations.ApiModelProperty; | 
 |  |  | import lombok.Data; | 
 |  |  |  | 
 |  |  | import java.time.LocalDateTime; | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | public class FeedbackDTO { | 
 |  |  | public class FeedbackDTO extends AbstractTransDTO { | 
 |  |  |  | 
 |  |  |     private Long id; | 
 |  |  |  | 
 |  |  | 
 |  |  |     @ApiModelProperty("投诉反馈内容") | 
 |  |  |     private String feedBack; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("投诉反馈类型(feedback_type)") | 
 |  |  |     @DictTrans(target = "typeStr",codeType = "feedback_type") | 
 |  |  |     private String type; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("投诉反馈类型(feedback_type)") | 
 |  |  |     private String typeStr; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("图片") | 
 |  |  |     private String pictures; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("回复内容") | 
 |  |  |     private String reply; | 
 |  |  |  |