parent
728b708ffd
commit
2a8b6a573d
8 changed files with 273 additions and 31 deletions
@ -0,0 +1,125 @@ |
|||||||
|
package org.springblade.desk.cost.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 StStockInoutRecordExcel |
||||||
|
* @description: 出入库记录表 Excel实体类 |
||||||
|
* @autor: WuSiYu |
||||||
|
* @create 2026-01-04 11:23 |
||||||
|
**/ |
||||||
|
|
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class StStockInoutRecordExcel implements Serializable { |
||||||
|
|
||||||
|
@Serial |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* 物料编码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("物料编码") |
||||||
|
private String goodsCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 物料名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("物料名称") |
||||||
|
private String goodsName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 批号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("批号") |
||||||
|
private String piNo; |
||||||
|
/** |
||||||
|
* 出入库数量 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("出入库数量") |
||||||
|
private Double quantity; |
||||||
|
/** |
||||||
|
* 金额 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("金额") |
||||||
|
private Double sirMoney; |
||||||
|
/** |
||||||
|
* 采购单号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("采购单号") |
||||||
|
private String buyCode; |
||||||
|
/** |
||||||
|
* 检验单号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("检验单号") |
||||||
|
private String checkNo; |
||||||
|
/** |
||||||
|
* 生产标识 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("生产标识") |
||||||
|
private String quantityLevel; |
||||||
|
|
||||||
|
/** |
||||||
|
* 过期/报废日期 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("过期/报废日期") |
||||||
|
private Date scrapCycle; |
||||||
|
/** |
||||||
|
* 炉批号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("炉批号") |
||||||
|
private String stovePiNo; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 出入库原因 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("出入库原因") |
||||||
|
private String inOutReason; |
||||||
|
/** |
||||||
|
* 出入库日期 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("出入库日期") |
||||||
|
private Date inOutDate; |
||||||
|
|
||||||
|
/** |
||||||
|
* 业务人员/领用人ID |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("业务人员/领用人") |
||||||
|
private String userName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 出入库单号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("出入库单号") |
||||||
|
private String sirCode; |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
Loading…
Reference in new issue