Browse Source
按照万材要求,售后管理售后单新增导出功能,支持部分行和全部行导出,导出更多数据 新增导出所有和选择导出后端接口 新增 导出售后管理售后单明细方法 新增根据出货设备查询售后单集合方法 新增导出售后单明细dev
9 changed files with 273 additions and 5 deletions
@ -0,0 +1,118 @@ |
|||
package com.ruoyi.aftersales.domain.vo; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import com.ruoyi.common.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* 导出售后单明细 |
|||
* */ |
|||
@Data |
|||
public class ExportAftersalesOrderVo { |
|||
|
|||
|
|||
/** 售后单号 */ |
|||
@Excel(name = "售后单号") |
|||
private String aftersalesOrderCode; |
|||
|
|||
/** 关联销售订单号 */ |
|||
@Excel(name = "关联销售订单号") |
|||
private String salesOrderCode; |
|||
|
|||
|
|||
/** 售后状态 */ |
|||
@Excel(name = "售后状态",dictType = "sales_aftersales_status") |
|||
private String aftersalesStatus; |
|||
|
|||
/** 业务员 */ |
|||
@Excel(name = "业务员") |
|||
private String businessName; |
|||
|
|||
/** 售后员 */ |
|||
@Excel(name = "售后员") |
|||
private String aftersalesName; |
|||
|
|||
/** 客户ID */ |
|||
@Excel(name = "客户ID") |
|||
private String customerId; |
|||
|
|||
/** 客户名称 */ |
|||
@Excel(name = "客户名称") |
|||
private String customerName; |
|||
|
|||
|
|||
/** 物料数合计 */ |
|||
@Excel(name = "物料数合计") |
|||
private String materialSum; |
|||
|
|||
/** 数量合计 */ |
|||
@Excel(name = "数量合计") |
|||
private String enterpriseSum; |
|||
|
|||
/** 客户要求出发日期 */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd") |
|||
@Excel(name = "客户要求出发日期", width = 30, dateFormat = "yyyy-MM-dd") |
|||
private Date startDate; |
|||
|
|||
/** 收货联系人 */ |
|||
@Excel(name = "收货联系人") |
|||
private String deliveryName; |
|||
|
|||
/** 收货电话 */ |
|||
@Excel(name = "收货电话") |
|||
private String deliveryNumber; |
|||
|
|||
/** 公司地址 */ |
|||
@Excel(name = "公司地址") |
|||
private String companyAddress; |
|||
|
|||
|
|||
/** 料号 */ |
|||
@Excel(name = "料号") |
|||
private String materialNo; |
|||
|
|||
/** 物料名称 */ |
|||
@Excel(name = "物料名称") |
|||
private String materialName; |
|||
|
|||
/** 物料品牌 */ |
|||
@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; |
|||
|
|||
/** 紧急程度(0一般、1紧急) */ |
|||
@Excel(name = "紧急程度",dictType = "aftersales_emergency_degree") |
|||
private String emergencyDegree; |
|||
|
|||
/** 售后问题 */ |
|||
@Excel(name = "售后问题") |
|||
private String aftersalesProblem; |
|||
|
|||
|
|||
/** SN号(产品序列号) */ |
|||
@Excel(name = "SN号") |
|||
private String snCode; |
|||
|
|||
/** 设备流水号 */ |
|||
@Excel(name = "设备流水号") |
|||
private String deviceRunningNumber; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue