12 changed files with 240 additions and 3 deletions
@ -0,0 +1,44 @@ |
|||
package com.dreamchaser.depository_manage.entity; |
|||
|
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
|
|||
/** |
|||
* 用于打印的类 |
|||
*/ |
|||
@Data |
|||
@EqualsAndHashCode |
|||
public class ExcelInfoByMinWrite { |
|||
/** |
|||
* 物料编码: |
|||
*/ |
|||
private String mcode; |
|||
/** |
|||
* 物料名称: |
|||
*/ |
|||
private String mname; |
|||
/** |
|||
* 规格型号: |
|||
*/ |
|||
private String mversion; |
|||
/** |
|||
* 单位: |
|||
*/ |
|||
private String munit; |
|||
/** |
|||
* 库位 |
|||
*/ |
|||
private String pcode; |
|||
/** |
|||
* 数量 : |
|||
*/ |
|||
private String quantity; |
|||
|
|||
/** |
|||
* 项目 |
|||
*/ |
|||
private String project; |
|||
|
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,51 @@ |
|||
package com.dreamchaser.depository_manage.entity; |
|||
|
|||
import com.dreamchaser.depository_manage.pojo.ApplicationOutRecordP; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
|
|||
/** |
|||
* 用于打印的类 |
|||
*/ |
|||
@Data |
|||
@EqualsAndHashCode |
|||
public class ExcelInfoByWrite { |
|||
/** |
|||
* 出库单号: |
|||
*/ |
|||
private String code; |
|||
/** |
|||
* 出库日期: |
|||
*/ |
|||
private String outTime; |
|||
/** |
|||
* 出库类别: |
|||
*/ |
|||
private String type; |
|||
/** |
|||
* 仓库: |
|||
*/ |
|||
private String dname; |
|||
/** |
|||
* 部门: |
|||
*/ |
|||
private String adminorgName; |
|||
/** |
|||
* 申请人: |
|||
*/ |
|||
private String applicantName; |
|||
/** |
|||
* 施工单位: |
|||
*/ |
|||
private String constructionUnitName; |
|||
/** |
|||
* 审核人: |
|||
*/ |
|||
private String checkerName; |
|||
/** |
|||
* 制单人 |
|||
*/ |
|||
private String producerName; |
|||
|
|||
|
|||
} |
|||
Binary file not shown.
Loading…
Reference in new issue