xuhy
2025-04-14 66aa8a73f7ac6036d9af1b669d6f95718a8b4e71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "启用禁用DTO")
public class AuditStatusDTO implements Serializable {
 
    @ApiModelProperty(value = "id")
    private String id;
 
    @ApiModelProperty(value = "审核状态")
    private Integer auditStatus;
 
    @ApiModelProperty(value = "审核意见")
    private String auditRemark;
 
}