6 changed files with 162 additions and 45 deletions
@ -0,0 +1,100 @@
|
||||
package com.logpm.warehouse.excel; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class TaskQueryDataExcel implements Serializable { |
||||
|
||||
|
||||
|
||||
/** |
||||
* 订单自编号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("商场名称") |
||||
private String marketName; |
||||
/** |
||||
* 订单自编号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("订单自编号") |
||||
private String orderCode; |
||||
|
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("包条码") |
||||
private String orderPackageCode; |
||||
|
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("品类") |
||||
private String questTarget; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("盘点状态") |
||||
private String questStatus; |
||||
|
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("货位") |
||||
private String positionCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("物料名称") |
||||
private String materialName; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("数量") |
||||
private String stockNum; |
||||
|
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("托盘名称") |
||||
private String trayName; |
||||
|
||||
/** |
||||
* 一级名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("一级名称") |
||||
private String oneProduct; |
||||
/** |
||||
* 二级名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("二级名称") |
||||
private String twoProduct; |
||||
/** |
||||
* 三级名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("三级名称") |
||||
private String thirdProduct; |
||||
|
||||
/** |
||||
* 产品名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("产品名称") |
||||
private String categoryName; |
||||
|
||||
/** |
||||
* 物料编码 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("物料编码") |
||||
private String materialCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("品牌名称") |
||||
private String brandName; |
||||
} |
Loading…
Reference in new issue