Browse Source
按照万材要求,委外管理委外计划新增导出功能,支持部分行和全部行导出,导出更多数据 新增导出所有和选择导出后端接口 新增 导出委外管理委外计划明细方法 新增导出委外计划明细实体类dev
7 changed files with 234 additions and 4 deletions
@ -0,0 +1,88 @@ |
|||
package com.ruoyi.system.domain.Vo; |
|||
|
|||
import com.ruoyi.common.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* 导出委外计划明细 |
|||
* */ |
|||
@Data |
|||
public class ExportOutsourcePlanVo { |
|||
|
|||
/** 委外计划单号 */ |
|||
@Excel(name = "委外计划单号") |
|||
private String outsourcePlanCode; |
|||
|
|||
/** 关联单号(生产/请购) */ |
|||
@Excel(name = "关联单号") |
|||
private String associateOrderNo; |
|||
|
|||
/** 申请人 */ |
|||
@Excel(name = "申请人") |
|||
private String applicant; |
|||
|
|||
/** 状态 */ |
|||
@Excel(name = "状态", dictType = "outsource_plan_status") |
|||
private String status; |
|||
|
|||
/** 物料总计 */ |
|||
@Excel(name = "物料总计") |
|||
private Integer materialAmount; |
|||
|
|||
/** 数量总计 */ |
|||
@Excel(name = "数量总计") |
|||
private Integer totalAmount; |
|||
|
|||
/** 委外工序种类 */ |
|||
@Excel(name = "委外工序种类") |
|||
private Integer outsourceProcessType; |
|||
|
|||
/** 委外工序合计 */ |
|||
@Excel(name = "委外工序合计") |
|||
private Integer outsourceProcessAmount; |
|||
|
|||
/** 来源 */ |
|||
@Excel(name = "来源") |
|||
private String source; |
|||
|
|||
|
|||
|
|||
/** 料号 */ |
|||
@Excel(name = "料号") |
|||
private String materialNo; |
|||
|
|||
/** 物料名称 */ |
|||
@Excel(name = "物料名称") |
|||
private String materialName; |
|||
|
|||
/** 描述 */ |
|||
@Excel(name = "描述") |
|||
private String description; |
|||
|
|||
/** 品牌 */ |
|||
@Excel(name = "品牌") |
|||
private String brand; |
|||
|
|||
/** 加工方式 */ |
|||
@Excel(name = "加工方式",dictType = "processMethod") |
|||
private String processMethod; |
|||
|
|||
/** 单位 */ |
|||
@Excel(name = "单位") |
|||
private String unit; |
|||
|
|||
/** 计划委外数 */ |
|||
@Excel(name = "计划委外数") |
|||
private Integer plannedOutsourceAmount; |
|||
|
|||
/** 实际委外数 */ |
|||
@Excel(name = "实际委外数") |
|||
private Integer actualOutsourceAmount; |
|||
|
|||
/** 委外计划状态 (0待申请1部分申请2全部申请)*/ |
|||
@Excel(name = "委外计划状态") |
|||
private String outPlanStatus; |
|||
|
|||
|
|||
|
|||
} |
Loading…
Reference in new issue