k94314517
2025-05-19 cdd6551b190b981b807a3b95e9635c559ccc769d
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;
 
 
 
}