zhenghaoyu
6 months ago
12 changed files with 190 additions and 14 deletions
@ -0,0 +1,82 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
||||
import org.springblade.common.constant.IncomingTypeEnum; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class TrunklineBillladingPackageExportVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "提货批次号") |
||||
private String billladingCode; |
||||
|
||||
@ExcelProperty(value = "司机名称") |
||||
private String driverName; |
||||
|
||||
@ExcelProperty(value = "司机电话") |
||||
private String driverPhone; |
||||
|
||||
@ExcelProperty(value = "车牌号") |
||||
private String carNumber; |
||||
|
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNo; |
||||
|
||||
@ExcelProperty(value = "包件码") |
||||
private String orderPackageCode; |
||||
|
||||
@ExcelProperty(value = "订单号") |
||||
private String orderCode; |
||||
|
||||
@ExcelProperty(value = "到站") |
||||
private String destination; |
||||
|
||||
@ExcelIgnore |
||||
private Integer incomingType; |
||||
|
||||
@ExcelProperty(value = "入库类型") |
||||
private String incomingTypeStr; |
||||
|
||||
public String getIncomingTypeStr() { |
||||
return IncomingTypeEnum.getValue(incomingType); |
||||
} |
||||
|
||||
@ExcelProperty(value = "托盘名称") |
||||
private String trayName; |
||||
|
||||
@ExcelProperty(value = "托盘码") |
||||
private String trayCode; |
||||
|
||||
@ExcelProperty(value = "一级品类") |
||||
private String firstPickName; |
||||
|
||||
@ExcelProperty(value = "二级品类") |
||||
private String secondPickName; |
||||
|
||||
@ExcelProperty(value = "三级品类") |
||||
private String thirdPickName; |
||||
|
||||
@ExcelProperty(value = "物料名称") |
||||
private String materialName; |
||||
|
||||
@ExcelProperty(value = "品牌") |
||||
private String brand; |
||||
|
||||
@ExcelProperty(value = "操作仓库") |
||||
private String warehouseName; |
||||
|
||||
@ExcelProperty(value = "操作人") |
||||
private String createUserName; |
||||
|
||||
|
||||
@ExcelProperty(value = "扫码时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date createTime; |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue