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.
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 ;
import java.util.Date ;
/**
* 设备养护记录详情响应结果
*/
@Data
public class DeviceMAOrderDetailResponse {
/**
* id
*/
private Integer id ;
/**
* 设备养护记录号
*/
private String orderIdFk ;
/**
* 条码
*/
private String code ;
/**
* 耗材字典ID
*/
private String nameCode ;
/**
* 产品ID
*/
private String relId ;
/**
* 批次号
*/
private String batchNo ;
/**
* 生产日期
*/
private String produceDate ;
/**
* 失效日期
*/
private String expireDate ;
/**
* 序列号
*/
private String serialNo ;
/**
* 创建时间
*/
private Date createTime ;
/**
* 更新时间
*/
private Date updateTime ;
/**
* 设备状态 0: 异常 1: 正常
*/
private Integer deviceStatus ;
/**
* 养护状态 0: 未养护 1: 已养护
*/
private Integer maStatus ;
/**
* 养护人
*/
private String createUser ;
/**
* 养护说明
*/
private String remark ;
/**
* 产品名称
*/
private String productName ;
/**
* 医疗器械注册人名称
*/
private String ylqxzcrbarmc ;
/**
* 注册证备案号
*/
private String zczbhhzbapzbh ;
/**
* 规格型号
*/
private String ggxh ;
}