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 extends AbstractTransDTO { private Long id; @ApiModelProperty("用户ID") private String userId; @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; @ApiModelProperty("是否处理") private Boolean handled; @ApiModelProperty("回复时间") private LocalDateTime replyTime; @ApiModelProperty("提交时间") private LocalDateTime createTime; @ApiModelProperty("用户姓名") private String customerName; @ApiModelProperty("用户电话") private String customerTel; }