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

97 lines
1.4 KiB
Java

package com.glxp.api.res.collect;
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;
/**
*
*/
private String workPlaceCode;
/**
*
*/
private String remark;
/**
*
*/
private String createUser;
/**
*
*/
private Date updateTime;
/**
*
*/
private String updateUser;
11 months ago
/**
* 0:1:234
*/
private Integer tagStatus;
private String tagMsg;
private String busTypeName;
private String fromTypeName;
private String fromCorpName;
private String workplaceName;
}