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