You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.res.inv ;
import com.baomidou.mybatisplus.annotation.TableField ;
import lombok.Data ;
import java.util.Date ;
/**
* 设备巡检计划VO
*/
@Data
public class DeviceInspectPlanResponse {
private Integer id ;
/**
* 单号
*/
private String orderId ;
/**
* 部门编码
*/
private String deptCode ;
/**
* 仓库编码
*/
private String invCode ;
/**
* 资产编码
*/
private String code ;
/**
* 计划级别( 1: 低级; 2: 中级; 3: 高级)
*/
private Integer level ;
/**
* 状态( 0: 新增; 1: 未审核; 2: 已审核)
*/
private Integer status ;
/**
* 创建人
*/
private String createUser ;
/**
* 审核人
*/
private String auditUser ;
/**
* 创建时间
*/
private Date createTime ;
/**
* 审核时间
*/
@TableField ( value = "auditTime" )
private Date auditTime ;
/**
* 备注
*/
private String remark ;
/**
* 部门名称
*/
private String deptName ;
/**
* 仓库名称
*/
private String invName ;
/**
* 设备名称
*/
private String deviceName ;
/**
* 规格型号
*/
private String ggxh ;
/**
* 批次号
*/
private String batchNo ;
}