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;
/**
* 添加设备维保单参数
*/
@Data
public class AddDeviceInspectOrderRequest {
* 部门编码
private String deptCode;
* 仓库编码
private String invCode;
* 资产编码
private String code;
* 上级单号,计划或报修单号
private String lastOrderId;
* 维保类型(1:报修;2:计划;3:手动)
private Integer type;
* 状态(0:新增;1:未审核;2:已审核)
private Integer status;
* 设备状态(0:异常;1:正常)
private Integer deviceStatus;
* 养护说明
private String remark;
}