doum
2025-08-21 e893b8971fe763f4821100badb313b3f17d3cf2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.doumee.dao.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/3/23 9:50
 */
@Data
@ApiModel("审批请求类")
public class AuditDTO {
 
    @ApiModelProperty(value = "主键")
    private Integer id;
 
    @ApiModelProperty(value = "审批状态:0=通过;1=拒绝;")
    private Integer auditStatus;
 
    @ApiModelProperty(value = "审批描述")
    private String auditRemark;
 
}