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/AddDeviceInspectOrderReques...

52 lines
806 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;
/**
* 添加设备维保单参数
*/
@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;
}