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