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/res/collect/CollectOrderBizResponse.java

147 lines
2.3 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.res.collect;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
@Data
public class CollectOrderBizResponse {
private Long id;
/**
* 单据号外键
*/
private String orderIdFk;
/**
* 院内编码(第三方编码)
*/
private String thrCode;
/**
* 医保编码
*/
private String ybbm;
/**
* 收费编码
*/
private String payFeeCode;
/**
* 产品通用名称
*/
private String cpmctymc;
/**
* 产品标识
*/
private String nameCode;
/**
* 规格型号
*/
private String ggxh;
/**
* 批次号
*/
private String batchNo;
/**
* 生产日期
*/
private String productDate;
/**
* 失效日期
*/
private String expireDate;
/**
* 单据数量
*/
private Integer count;
/**
* 实际数量
*/
private Integer actCount;
/**
* 扫码数量
*/
private Integer scanCount;
/**
* 扫码实际数量
*/
private Integer scanActCount;
/**
* 计量单位
*/
private String measureUnit;
/**
* 单据明细赋码状态 1:未赋码2部分赋码3已赋码
*/
private Integer tagStatus;
/**
* 赋码错误信息
*/
private String tagMsg;
/**
* 备注
*/
private String remark;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 绑定的UDI码
*/
private String udiCode;
private Long relId;
private Integer unTagCount;
private String scanUdiCode;
private String splitUdiCode;
private String unSplitUdiCode;
private String finishUdiCode;
private String bzgg;
private Integer autoResCount;
private String replaceCode;
/**
* 自动赋码状态1无法自动赋码2可以自动赋码3:可以自动赋码,但是数量不足
*/
private Integer autoTagStatus;
/**
* 临时工位存量
*/
private Integer tempWorkPlaceCount;
/**
* 临时拆零存量
*/
private Integer tempSplitCount;
}