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.req.inv ;
import lombok.Data ;
import java.util.Date ;
/**
* 添加部门设备巡检计划参数
*/
@Data
public class AddDeviceInspectPlanRequest {
/**
* 部门编码
*/
private String deptCode ;
/**
* 仓库编码
*/
private String invCode ;
/**
* 资产编码
*/
private String code ;
/**
* 计划级别( 1: 低级; 2: 中级; 3: 高级)
*/
private Integer level ;
/**
* 状态( 1: 新增; 2: 未审核; 3: 已审核)
*/
private Integer status ;
/**
* 备注
*/
private String remark ;
/**
* 计划开始时间
*/
private Date startTime ;
/**
* 计划结束时间
*/
private Date endTime ;
/**
* 时间频率
*/
private String frequency ;
/**
* 时间频率单位( 1: 年; 2: 月: 3: 日; 4: 小时; 5: 分钟: 6: 秒)
*/
private Integer frequencyUnit ;
/**
* 计划状态(1:未启用; 2: 运行中; 3: 已结束; 4: 已过期
*/
private Integer planStatus ;
/**
* 巡检人
*/
private String inspectUser ;
/**
* 上次巡检时间
*/
private Date lastTime ;
/**
* 下一次巡检时间
*/
private Date nextTime ;
}