| 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; | 
|   | 
|   | 
|   | 
| } |