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/dev/AddDeviceInspectSetRequest....

49 lines
730 B
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.dev;
import lombok.Data;
import java.util.Date;
/**
* 添加科室设备巡检设置参数
*/
@Data
public class AddDeviceInspectSetRequest {
/**
* 资产编码
*/
private String code;
/**
* 时间频率
*/
private String frequency;
/**
* 时间频率单位1234小时5分钟 6
*/
private Integer frequencyUnit;
/**
* 状态1启用2禁用
*/
private Integer status;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 备注
*/
private String remark;
}