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.
udi-wms-java/src/main/java/com/glxp/api/req/inv/AddDeviceInspectPlanRequest...

79 lines
1.3 KiB
Java

This file contains ambiguous Unicode characters!

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;
/**
* 时间频率单位1234小时5分钟 6
*/
private Integer frequencyUnit;
/**
* 计划状态(1:未启用2运行中3已结束4已过期
*/
private Integer planStatus;
/**
* 巡检人
*/
private String inspectUser;
/**
* 上次巡检时间
*/
private Date lastTime;
/**
* 下一次巡检时间
*/
private Date nextTime;
}