parent
c292a14344
commit
348e2f0d76
7 changed files with 234 additions and 16 deletions
@ -0,0 +1,141 @@ |
||||
package org.springblade.wms.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.Serial; |
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* @version 1.0 |
||||
* @program: jonhon-mes-svr |
||||
* @ClassName StOtherReceiptRecordExcel |
||||
* @description: 其他入库表 Excel实体类 |
||||
* @autor: WuSiYu |
||||
* @create 2026-01-04 15:48 |
||||
**/ |
||||
|
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class StOtherReceiptRecordEntityExcel implements Serializable { |
||||
|
||||
@Serial |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 出入库单号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("入库单号") |
||||
private String sirCode; |
||||
/** |
||||
* 物料编码 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("物料编码") |
||||
private String goodsCode; |
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("物料名称") |
||||
private String goodsName; |
||||
/** |
||||
* 型号/牌号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("型号/牌号") |
||||
private String materialModel; |
||||
/** |
||||
* 质量编号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("质量编号") |
||||
private String checkCode; |
||||
/** |
||||
* 批号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("批号") |
||||
private String piNo; |
||||
/** |
||||
* 炉批号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("炉批号") |
||||
private String stovePiNo; |
||||
/** |
||||
* 生产标识 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("生产标识") |
||||
private String quantityLevel; |
||||
/** |
||||
* 到期日期 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("到期日期") |
||||
private Date scrapCycle; |
||||
/** |
||||
* 入库数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("入库数量") |
||||
private Double quantity; |
||||
/** |
||||
* 计量单位 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("计量单位") |
||||
private String unitName; |
||||
/** |
||||
* 入库仓库 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("入库仓库") |
||||
private String shName; |
||||
/** |
||||
* 入库库位 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("入库库位") |
||||
private String location; |
||||
/** |
||||
* 单价 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("单价") |
||||
private Double unitPrice; |
||||
/** |
||||
* 金额 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("金额") |
||||
private Double sirMoney; |
||||
/** |
||||
* 入库人 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("入库人") |
||||
private String userName; |
||||
/** |
||||
* 入库时间 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("入库时间") |
||||
private Date createTime; |
||||
/** |
||||
* 入库原因 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("入库原因") |
||||
private String warehousingReasonName; |
||||
|
||||
} |
||||
|
||||
Loading…
Reference in new issue