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.
77 lines
1.2 KiB
Java
77 lines
1.2 KiB
Java
package com.glxp.api.res.inv;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class InvPreinDetailResponse {
|
|
|
|
|
|
private Integer id;
|
|
|
|
/**
|
|
* 条码
|
|
*/
|
|
private String code;
|
|
|
|
/**
|
|
* 单据号外键
|
|
*/
|
|
private String orderId;
|
|
|
|
/**
|
|
* 最小销售表示
|
|
*/
|
|
private String nameCode;
|
|
|
|
/**
|
|
* 批次号
|
|
*/
|
|
private String batchNo;
|
|
|
|
/**
|
|
* 生产日期
|
|
*/
|
|
private String produceDate;
|
|
|
|
/**
|
|
* 失效日期
|
|
*/
|
|
private String expireDate;
|
|
|
|
/**
|
|
* 序列号
|
|
*/
|
|
private String serialNo;
|
|
|
|
/**
|
|
* 耗材字典主键
|
|
*/
|
|
private Long relId;
|
|
|
|
/**
|
|
* 扫码数量
|
|
*/
|
|
private int count;
|
|
|
|
|
|
private Integer originReCount;
|
|
|
|
/**
|
|
* 实际数量
|
|
*/
|
|
private int reCount;
|
|
private Integer status;
|
|
private String productName;
|
|
private String ggxh;
|
|
private String manufactory;
|
|
private String zczbhhzbapzbh;
|
|
private String auditTime;
|
|
private String billNo;
|
|
private String invName;
|
|
|
|
|
|
}
|