1.
luofl
2025-02-23 e5ca6b1d9e961d51cb607e34ad259f7495d917e0
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/model/dto/ComplaintReportDTO.java
File was renamed from springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/dto/ComplaintReport.java
@@ -1,4 +1,4 @@
package com.panzhihua.sangeshenbian.dto;
package com.panzhihua.sangeshenbian.model.dto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@@ -6,11 +6,11 @@
@Data
@ApiModel(value = "诉求上报")
public class ComplaintReport {
public class ComplaintReportDTO {
    @ApiModelProperty(value = "诉求id")
    private Long id;
    private Long complaintId;
    @ApiModelProperty(value = "诉求内容")
    private String descriptionContent;
    private String comment;
}