|
|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
package com.biutag.supervision.pojo.request.complaintCollection; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.biutag.supervision.aop.ParamChecked; |
|
|
|
|
import com.biutag.supervision.util.CheckUtil; |
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
|
import lombok.Getter; |
|
|
|
|
import lombok.Setter; |
|
|
|
|
@ -8,7 +10,7 @@ import lombok.Setter;
|
|
|
|
|
@Setter |
|
|
|
|
@Getter |
|
|
|
|
@Schema(description = "初核请求") |
|
|
|
|
public class ComplaintCollectionInitialReviewSaveRequest { |
|
|
|
|
public class ComplaintCollectionInitialReviewSaveRequest implements ParamChecked { |
|
|
|
|
|
|
|
|
|
@Schema(description = "涉访涉诉编号id") |
|
|
|
|
private String complaintId; |
|
|
|
|
@ -22,4 +24,8 @@ public class ComplaintCollectionInitialReviewSaveRequest {
|
|
|
|
|
@Schema(description = "初核结论") |
|
|
|
|
private String initVerdict; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void check() { |
|
|
|
|
CheckUtil.checkNotNull(complaintId, "投诉编号不能为空!"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|