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;
* 时间频率单位(1:年;2:月:3:日;4:小时;5:分钟: 6:秒)
private Integer frequencyUnit;
* 状态(1:启用;2:禁用)
private Integer status;
* 备注
private String remark;
}