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/res/dev/DeviceInspectSetResponse.java

54 lines
790 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.res.dev;
import lombok.Data;
/**
* 科室设备巡检设置参数
*/
@Data
public class DeviceInspectSetResponse {
private Integer id;
/**
* 设备名称
*/
private String deviceName;
/**
* 资产编码
*/
private String code;
/**
* 部门名称
*/
private String deptName;
/**
* 仓库名称
*/
private String invName;
/**
* 时间频率
*/
private String frequency;
/**
* 时间频率单位1234小时5分钟 6
*/
private Integer frequencyUnit;
/**
* 状态1启用2禁用
*/
private Integer status;
/**
* 备注
*/
private String remark;
}