6 changed files with 65 additions and 11 deletions
@ -0,0 +1,43 @@
|
||||
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; |
||||
|
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class BasicdataGoodsAreaexportExcel implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
/** |
||||
* 货区名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("货区名称") |
||||
private String areaName; |
||||
/** |
||||
* 货架名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("货架名称") |
||||
private String shelfName; |
||||
/** |
||||
* 货位 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("货位") |
||||
private String allocationName; |
||||
/** |
||||
* 数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("数量") |
||||
private String allocationNub; |
||||
} |
Loading…
Reference in new issue