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/AddDeptDeviceRequest.java

109 lines
1.5 KiB
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 AddDeptDeviceRequest {
private Integer id;
/**
* 科室编码
*/
private String deptCode;
/**
* 仓库编码
*/
private String invCode;
/**
* 原始码
*/
private String originCode;
/**
* 资产编码
*/
private String code;
/**
* 设备名称
*/
private String deviceName;
/**
* 规格型号
*/
private String ggxh;
/**
* 批次号
*/
private String batchNo;
/**
* 序列号
*/
private String serialNo;
/**
* 生产日期
*/
private String productionDate;
/**
* 失效日期
*/
private String expireDate;
/**
* 生产厂家
*/
private String manufactory;
/**
* 计量单位
*/
private String measname;
/**
* 注册/备案凭证号
*/
private String zczbhhzbapzbh;
/**
* 供应商名称
*/
private String supName;
/**
* 状态1正常2报修3养护中4已养护5已报废
*/
private Integer status;
/**
* 添加方式1领用添加2手动添加
*/
private Integer addType;
/**
* 添加人
*/
private String createUser;
/**
* 负责人
*/
private String manager;
/**
* 备注
*/
private String remark;
}