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

106 lines
1.7 KiB
Java

package com.glxp.api.res.collect;
11 months ago
import cn.hutool.core.util.StrUtil;
11 months ago
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.util.Date;
@Data
public class IoCollectOrderResponse {
private Integer id;
/**
*
*/
private String billNo;
/**
*
*/
private String busType;
/**
*
*/
private String fromType;
/**
*
*/
private String fromTypeDesc;
/**
*
*/
private String fromCorp;
/**
*
*/
private Date billTime;
/**
*
*/
private Date createTime;
/**
*
*/
private Date collectTime;
/**
*
*/
private String collectCode;
/**
*
*/
11 months ago
private Long workPlaceCode;
/**
*
*/
private String remark;
/**
*
*/
private String createUser;
/**
*
*/
private Date updateTime;
/**
*
*/
private String updateUser;
11 months ago
/**
11 months ago
* 0:1:234,-1:稿
11 months ago
*/
private Integer tagStatus;
private String tagMsg;
private String busTypeName;
private String fromTypeName;
private String fromCorpName;
private String workplaceName;
11 months ago
private String fromName;
11 months ago
11 months ago
public String getFromName() {
11 months ago
if (StrUtil.isNotEmpty(fromCorpName))
return fromCorpName;
if (StrUtil.isNotEmpty(fromCorp))
return fromCorp;
return fromName;
}
}