9 changed files with 406 additions and 33 deletions
@ -0,0 +1,59 @@
|
||||
package com.logpm.basicdata.vo; |
||||
|
||||
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; |
||||
|
||||
/** |
||||
* 托盘库存品信息导出 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class TrayInventoryExcelVO { |
||||
|
||||
@ExcelProperty(value = "SKU") |
||||
private String sku; |
||||
|
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
@ExcelProperty(value = "物料名称") |
||||
private String materialName; |
||||
/** |
||||
* 物料编号 |
||||
*/ |
||||
@ExcelProperty(value = "物料编号") |
||||
private String materialCode; |
||||
|
||||
|
||||
@ExcelProperty(value = "规格") |
||||
private String cargoNorms; |
||||
|
||||
@ExcelProperty(value = "单位") |
||||
private String cargoUnit; |
||||
|
||||
|
||||
@ExcelProperty(value = "仓库名称") |
||||
private String warehouseName; |
||||
|
||||
@ExcelProperty(value = "商场名称") |
||||
private String marketName; |
||||
|
||||
@ExcelProperty(value = "所在库位") |
||||
private String positionCode; |
||||
|
||||
@ExcelProperty(value = "数量") |
||||
private String num; |
||||
|
||||
@ExcelProperty(value = "操作时间") |
||||
private String operateTime; |
||||
|
||||
@ExcelProperty(value = "操作人") |
||||
private String operateUserName; |
||||
|
||||
|
||||
} |
@ -0,0 +1,124 @@
|
||||
package com.logpm.basicdata.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.format.DateTimeFormat; |
||||
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 io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 托盘包件信息导出 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class TrayPackageExcelVO implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 服务号 |
||||
*/ |
||||
@ExcelProperty(value = "服务号") |
||||
// @DateTimeFormat("yyyy-MM-dd")
|
||||
private String serviceNumber; |
||||
|
||||
/** |
||||
* 运单号 |
||||
*/ |
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNumber; |
||||
|
||||
/** |
||||
* 订单自编号 |
||||
*/ |
||||
@ExcelProperty(value = "订单自编号") |
||||
private String orderCode; |
||||
|
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ExcelProperty(value = "包条码") |
||||
private String orderPackageCode; |
||||
|
||||
/** |
||||
* 商城名称 |
||||
*/ |
||||
@ExcelProperty(value = "商城名称") |
||||
private String marketName; |
||||
|
||||
/** |
||||
* 是否串货 |
||||
*/ |
||||
@ExcelProperty(value = "是否串货") |
||||
private String fleeingName; |
||||
|
||||
/** |
||||
* 仓库 |
||||
*/ |
||||
@ExcelProperty(value = "仓库") |
||||
private String warehouseName; |
||||
|
||||
|
||||
/** |
||||
* 一级品 |
||||
*/ |
||||
@ExcelProperty(value = "一级品") |
||||
private String firsts; |
||||
|
||||
/** |
||||
* 二级品 |
||||
*/ |
||||
@ExcelProperty(value = "二级品") |
||||
private String second; |
||||
/** |
||||
* 三级品 |
||||
*/ |
||||
@ExcelProperty(value = "三级品") |
||||
private String thirdProduct; |
||||
|
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
@ExcelProperty(value = "物料名称") |
||||
private String materialName; |
||||
/** |
||||
* 物料编号 |
||||
*/ |
||||
@ExcelProperty(value = "物料编号") |
||||
private String materialCode; |
||||
/** |
||||
* 品牌名称 |
||||
*/ |
||||
@ExcelProperty(value = "品牌名称") |
||||
private String brandName; |
||||
|
||||
/** |
||||
* 货位信息 |
||||
*/ |
||||
@ExcelProperty(value = "货位信息") |
||||
private String goodsAllocation; |
||||
|
||||
|
||||
/** |
||||
* 操作时间 |
||||
*/ |
||||
@ExcelProperty(value = "操作时间") |
||||
@DateTimeFormat("yyyy-MM-dd HH:mm:ss") |
||||
private Date operateTime; |
||||
|
||||
/** |
||||
* 操作人(v) |
||||
*/ |
||||
@ExcelProperty(value = "操作人") |
||||
private String operateUserName; |
||||
} |
||||
|
||||
|
||||
|
Loading…
Reference in new issue