Browse Source
按照万材要求,销售管理售后通知单新增导出功能,支持部分行和全部行导出,导出更多数据 新增 销售管理售后通知单导出明细实体类 新增导出所有和选择导出后端接口 新增 导出售后通知单明细方法 新增 根据售后通知单号集合查询售后通知单集合方法 新增 根据售后通知单号查询售后通知单详情数据方法dev
9 changed files with 331 additions and 8 deletions
@ -0,0 +1,133 @@ |
|||
package com.ruoyi.sales.domain.VO; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import com.ruoyi.common.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* 销售管理售后通知单导出明细 |
|||
* */ |
|||
@Data |
|||
public class ExportSalesAftersalesNoticeVo { |
|||
|
|||
|
|||
/** 售后单号 */ |
|||
@Excel(name = "售后单号") |
|||
private String aftersalesNoticeCode; |
|||
|
|||
/** 关联销售订单编号 */ |
|||
@Excel(name = "关联销售订单编号") |
|||
private String salesOrderCode; |
|||
|
|||
|
|||
/** 关联生产订单号 */ |
|||
@Excel(name = "关联生产订单号") |
|||
private String makeNo; |
|||
|
|||
/** 审核状态 */ |
|||
@Excel(name = "审核状态", dictType = "auditStatus") |
|||
private String auditStatus; |
|||
|
|||
/** 售后状态 */ |
|||
@Excel(name = "售后状态",dictType = "sales_aftersales_status") |
|||
private String aftersalesStatus; |
|||
|
|||
/** 业务人员 */ |
|||
@Excel(name = "业务人员") |
|||
private String businessMembers; |
|||
|
|||
/** 售后人员 */ |
|||
@Excel(name = "售后人员") |
|||
private String aftersalesMembers; |
|||
|
|||
/** 客户代码 */ |
|||
@Excel(name = "客户代码") |
|||
private String enterpriseCode; |
|||
|
|||
/** 客户名称 */ |
|||
@Excel(name = "客户名称") |
|||
private String enterpriseName; |
|||
|
|||
/** 物料数合计 */ |
|||
@Excel(name = "物料数合计") |
|||
private String materialSum; |
|||
|
|||
/** 数量合计 */ |
|||
@Excel(name = "数量合计") |
|||
private String enterpriseSum; |
|||
|
|||
/** 客户要求出发日期 */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd") |
|||
@Excel(name = "客户要求出发日期") |
|||
private Date startTime; |
|||
|
|||
/** 联系人 */ |
|||
@Excel(name = "联系人") |
|||
private String customerContact; |
|||
|
|||
/** 联系电话 */ |
|||
@Excel(name = "联系电话") |
|||
private String contactNumber; |
|||
|
|||
/** 公司地址 */ |
|||
@Excel(name = "公司地址") |
|||
private String companyAddress; |
|||
|
|||
/** 紧急程度(0一般、1紧急) */ |
|||
@Excel(name = "紧急程度", dictType = "aftersales_emergency_degree") |
|||
private String emergencyDegree; |
|||
|
|||
/** 售后问题 */ |
|||
@Excel(name = "售后问题") |
|||
private String aftersalesProblem; |
|||
|
|||
/** 报告问题 */ |
|||
@Excel(name = "报告问题") |
|||
private String aftersalesReportUrl; |
|||
|
|||
/** 客户ID */ |
|||
private String customerId; |
|||
|
|||
/** 客户名称 */ |
|||
private String customerName; |
|||
|
|||
/** SN号(产品序列号) */ |
|||
@Excel(name = "SN号") |
|||
private String snCode; |
|||
|
|||
/** 设备流水号 */ |
|||
@Excel(name = "设备流水号") |
|||
private String deviceRunningNumber; |
|||
|
|||
/** 物料名称 */ |
|||
@Excel(name = "物料名称") |
|||
private String materialName; |
|||
|
|||
/** 料号 */ |
|||
@Excel(name = "料号") |
|||
private String materialNo; |
|||
|
|||
/** 物料品牌 */ |
|||
@Excel(name = "物料品牌") |
|||
private String materialBrand; |
|||
|
|||
/** 物料单位 */ |
|||
@Excel(name = "物料单位") |
|||
private String materialUnit; |
|||
|
|||
/** 物料描述 */ |
|||
@Excel(name = "物料描述") |
|||
private String materialDescribe; |
|||
|
|||
/** 物料加工方式 */ |
|||
@Excel(name = "物料加工方式", dictType = "processMethod") |
|||
private String materialProcessMethod; |
|||
|
|||
/** 已出库数量 */ |
|||
@Excel(name = "已出库数量") |
|||
private Integer shippedGoodsSum; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue