|
|
@@ -0,0 +1,30 @@
|
|
|
+package shop.alien.entity.store.dto;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 审核申诉请求对象
|
|
|
+ *
|
|
|
+ * @author system
|
|
|
+ * @since 2025-01-XX
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@JsonInclude
|
|
|
+@ApiModel(value = "AuditAppealRequestDto对象", description = "审核申诉请求")
|
|
|
+public class AuditAppealRequestDto implements Serializable {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "申诉ID", required = true)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "审核状态:1-已通过,2-已驳回", required = true)
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "审核原因")
|
|
|
+ private String reviewReasons;
|
|
|
+}
|
|
|
+
|