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.
46 lines
1023 B
Java
46 lines
1023 B
Java
package com.glxp.api.entity.inout;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class PdaCodeEntity {
|
|
private String code; //药监码
|
|
private String order; //订单号
|
|
private String type; //业务类型
|
|
private String Actor;
|
|
private String ActDate;
|
|
private String FromCorpID;
|
|
private String inout;
|
|
|
|
//新增字段
|
|
private String batchNo;
|
|
private String produceDate;
|
|
private String expireDate;
|
|
private String serialNo;
|
|
private String udi;
|
|
private Integer count; //码数量
|
|
private String thirdProductNo;
|
|
private Integer sCount; //扫码实际数量
|
|
private String supId;
|
|
private Long relId;
|
|
|
|
public String getSupId() {
|
|
|
|
if (supId == null) {
|
|
return null;
|
|
} else if (supId.equals(""))
|
|
return null;
|
|
return supId;
|
|
}
|
|
|
|
public Integer getCount() {
|
|
|
|
if (count == null) {
|
|
return 1;
|
|
}
|
|
if (count == 0)
|
|
return 1;
|
|
return count;
|
|
}
|
|
}
|