5 changed files with 290 additions and 25 deletions
@ -0,0 +1,122 @@ |
|||||||
|
package com.logpm.basicdata.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; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车辆照片信息表 Excel实体类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-09-11 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class BasicdatavisualizationSheetThree implements Serializable { |
||||||
|
/** |
||||||
|
* 订单自编号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("订单自编号") |
||||||
|
private String orderCode; |
||||||
|
/** |
||||||
|
* 包条码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("包条码") |
||||||
|
private String orderPackageCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 物料编码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("物料编码") |
||||||
|
private String materialCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 物料名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("物料名称") |
||||||
|
private String materialName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 托盘码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("托盘码") |
||||||
|
private String trayCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 库位号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("库位号") |
||||||
|
private String positionInfo; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 一级品类 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("一级品类") |
||||||
|
private String firsts; |
||||||
|
|
||||||
|
/** |
||||||
|
* 一级品类编码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("一级品类编码") |
||||||
|
private String firstsCode; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 二级品类 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("二级品类") |
||||||
|
private String second; |
||||||
|
|
||||||
|
/** |
||||||
|
* 二级品类编码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("二级品类编码") |
||||||
|
private String secondCode; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 三级品类 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("三级品类") |
||||||
|
private String thirdProduct; |
||||||
|
|
||||||
|
/** |
||||||
|
* 三级品类编码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("三级品类编码") |
||||||
|
private String thirdCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 上架时间 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("上架时间") |
||||||
|
private String createTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 上架人 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("上架人") |
||||||
|
private String createUser; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,69 @@ |
|||||||
|
package com.logpm.basicdata.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; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车辆照片信息表 Excel实体类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-09-11 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class BasicdatavisualizationSheetTwo implements Serializable { |
||||||
|
|
||||||
|
/** |
||||||
|
* 库位号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("库位号") |
||||||
|
private String positionInfo; |
||||||
|
/** |
||||||
|
* 一级品类 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("一级品类") |
||||||
|
private String firsts; |
||||||
|
/** |
||||||
|
* 二级品类 |
||||||
|
*/ |
||||||
|
@ColumnWidth(40) |
||||||
|
@ExcelProperty("二级品类") |
||||||
|
private String second; |
||||||
|
|
||||||
|
/** |
||||||
|
* 三级品类 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("三级品类") |
||||||
|
private String thirdProduct; |
||||||
|
|
||||||
|
/** |
||||||
|
* 订单自编号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("订单自编号") |
||||||
|
private String orderCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 物料名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("物料名称") |
||||||
|
private String materialName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 数量 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("数量") |
||||||
|
private String num; |
||||||
|
} |
Loading…
Reference in new issue