jiangping
2024-01-18 553831c82c2e8f8ff7b230c4d536cf99c47ece5b
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
27
28
29
30
31
package com.doumee.dao.business.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2024/1/16 10:36
 */
@Data
public class DispatchUnitAuditDTO {
 
    @ApiModelProperty(value = "主键")
    private Integer id;
 
    @ApiModelProperty(value = "审批类别:0=单位审批;1=工种审批")
    private Integer auditType;
 
    @ApiModelProperty(value = "审批状态 1审核通过 2审核不通过")
    private Integer status;
 
    @ApiModelProperty(value = "审批备注")
    private String auditRemark;
 
 
 
}