|
|
@@ -5,6 +5,9 @@ import com.sckw.excel.annotation.ExcelContext;
|
|
|
import lombok.Data;
|
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
|
+import java.io.Serial;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
/**
|
|
|
* @desc: 交易列表信息导出对象
|
|
|
* @author: yzc
|
|
|
@@ -13,83 +16,86 @@ import lombok.experimental.Accessors;
|
|
|
@Data
|
|
|
@Accessors(chain = true)
|
|
|
@ExcelContext(fileName = "交易列表信息", sheetName = "交易列表信息")
|
|
|
-public class TradeOrderListExport {
|
|
|
- @ExcelProperty(value = "上架状态", index = 0)
|
|
|
+public class TradeOrderListExport implements Serializable {
|
|
|
+ @Serial
|
|
|
+ private static final long serialVersionUID = -5895230502149598364L;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "上架状态" )
|
|
|
private String status;
|
|
|
|
|
|
- @ExcelProperty(value = "订单编号", index = 1)
|
|
|
+ @ExcelProperty(value = "订单编号" )
|
|
|
private String tOrderNo;
|
|
|
|
|
|
- @ExcelProperty(value = "采购单位", index = 2)
|
|
|
+ @ExcelProperty(value = "采购单位")
|
|
|
private String procureFirmName;
|
|
|
|
|
|
- @ExcelProperty(value = "销售单位", index = 3)
|
|
|
+ @ExcelProperty(value = "销售单位")
|
|
|
private String supplyFirmName;
|
|
|
|
|
|
- @ExcelProperty(value = "交付类型", index = 4)
|
|
|
+ @ExcelProperty(value = "交付类型" )
|
|
|
private String deliveryType;
|
|
|
|
|
|
- @ExcelProperty(value = "提货方式", index = 5)
|
|
|
+ @ExcelProperty(value = "提货方式" )
|
|
|
private String pickupType;
|
|
|
|
|
|
- @ExcelProperty(value = "托运状态", index = 6)
|
|
|
+ @ExcelProperty(value = "托运状态")
|
|
|
private String consignmentStatus;
|
|
|
|
|
|
- @ExcelProperty(value = "下单方式", index = 7)
|
|
|
+ @ExcelProperty(value = "下单方式" )
|
|
|
private String source;
|
|
|
|
|
|
- @ExcelProperty(value = "付款类型", index = 8)
|
|
|
+ @ExcelProperty(value = "付款类型")
|
|
|
private String trading;
|
|
|
|
|
|
- @ExcelProperty(value = "关联合同", index = 9)
|
|
|
+ @ExcelProperty(value = "关联合同")
|
|
|
private String contractNo;
|
|
|
|
|
|
- @ExcelProperty(value = "承包方式", index = 10)
|
|
|
+ @ExcelProperty(value = "承包方式")
|
|
|
private String contractSigningWay;
|
|
|
|
|
|
- @ExcelProperty(value = "商品名称", index = 11)
|
|
|
- private String manageName;
|
|
|
+ @ExcelProperty(value = "商品名称")
|
|
|
+ private String goodsName;
|
|
|
|
|
|
- @ExcelProperty(value = "规格", index = 12)
|
|
|
+ @ExcelProperty(value = "规格")
|
|
|
private String goodsSpec;
|
|
|
|
|
|
- @ExcelProperty(value = "上架时间", index = 13)
|
|
|
+ @ExcelProperty(value = "上架时间")
|
|
|
private String addedTime;
|
|
|
|
|
|
- @ExcelProperty(value = "单价/元", index = 14)
|
|
|
+ @ExcelProperty(value = "单价/元")
|
|
|
private String unitPrice;
|
|
|
|
|
|
- @ExcelProperty(value = "订单金额", index = 15)
|
|
|
+ @ExcelProperty(value = "订单金额")
|
|
|
private String price;
|
|
|
|
|
|
- @ExcelProperty(value = "订单目标", index = 16)
|
|
|
+ @ExcelProperty(value = "订单目标")
|
|
|
private String amount;
|
|
|
|
|
|
- @ExcelProperty(value = "已履约量", index = 17)
|
|
|
+ @ExcelProperty(value = "已履约量")
|
|
|
private String actualAmount;
|
|
|
|
|
|
- @ExcelProperty(value = "归属项目", index = 14)
|
|
|
+ @ExcelProperty(value = "归属项目")
|
|
|
private String projectName;
|
|
|
|
|
|
- @ExcelProperty(value = "装货地点", index = 15)
|
|
|
+ @ExcelProperty(value = "装货地点")
|
|
|
private String loadCityName;
|
|
|
|
|
|
- @ExcelProperty(value = "卸货地点", index = 16)
|
|
|
+ @ExcelProperty(value = "卸货地点")
|
|
|
private String unloadCityName;
|
|
|
|
|
|
- @ExcelProperty(value = "计划开始时间", index = 17)
|
|
|
+ @ExcelProperty(value = "计划开始时间")
|
|
|
private String startTime;
|
|
|
|
|
|
- @ExcelProperty(value = "计划结束时间", index = 17)
|
|
|
+ @ExcelProperty(value = "计划结束时间")
|
|
|
private String endTime;
|
|
|
|
|
|
- @ExcelProperty(value = "备注", index = 14)
|
|
|
+ @ExcelProperty(value = "备注")
|
|
|
private String remark;
|
|
|
|
|
|
- @ExcelProperty(value = "创造人", index = 15)
|
|
|
- private String creatByName;
|
|
|
+ @ExcelProperty(value = "创造人")
|
|
|
+ private String createByName;
|
|
|
|
|
|
- @ExcelProperty(value = "创建时间", index = 16)
|
|
|
+ @ExcelProperty(value = "创建时间")
|
|
|
private String createTime;
|
|
|
|
|
|
}
|