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-spms-java/src/main/java/com/glxp/api/res/inout/CptTraceResultResponse.java

147 lines
2.4 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.inout;
import cn.hutool.core.util.StrUtil;
import lombok.Data;
import java.util.Date;
@Data
public class CptTraceResultResponse {
private Long id;
/**
* 单据号
*/
private String billNo;
/**
* 单据时间
*/
private String billDate;
/**
* 1:入库2出库
*/
private Integer inOutType;
/**
* 单据类型
*/
private String billType;
/**
* 发货企业
*/
private String fromCorp;
/**
* 发货企业统一社会信用号
*/
private String fromCorpCreditNum;
/**
* 收货企业
*/
private String toCorp;
/**
* 收货企业统一社会信用号
*/
private String toCorpCreditNum;
private String toUserInfo;
/**
* 单据创建者
*/
private Long createUser;
/**
* 当前企业信息ID外键
*/
private Long companyIdFk;
/**
* 当前企业名称
*/
private String companyName;
/**
* 当前企业统一社会信用号
*/
private String companyCertNum;
/**
* 客户端类型
*/
private Integer clientType;
/**
* 退货原因(退货时填写)
*/
private String returnReason;
/**
* 销毁原因(销毁时填写)
*/
private String destoryReason;
/**
* 执行销毁人(销毁时填写)
*/
private String excuseUser;
/**
* 执行销毁人证件号(销毁时填写)
*/
private String excuseCode;
/**
* 监督人姓名【销毁出库时填写】
*/
private String superviserUser;
/**
* 监督人证件号【销毁出库时填写】
*/
private String superviserCode;
/**
* 上传着ID
*/
private Long uploadUser;
/**
* 备注
*/
private String remark;
/**
* 更新时间
*/
private Date updateTime;
//关联信息
private String cpmctymc;
private String nameCode;
private String ggxh;
private String ylqxzcrbarmc;
private String batchNo;
private String produceDate;
private String expireDate;
private String serialNo;
private String udiCode;
private String zczbhhzbapzbh;
private String recordCode;
private Integer count;
public String getToCorp() {
if (StrUtil.isEmpty(toCorp))
return toUserInfo;
return toCorp;
}
}