package com.taoke.autopay.dto.admin;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
/**
|
* @author hxh
|
* @title: OrderExcelDataDto
|
* @description: 订单excel输出
|
* @date 2024/7/18 22:44
|
*/
|
|
public class OrderExcelDataDto {
|
|
@ExcelProperty("ID")
|
private String id;
|
@ExcelProperty("老铁ID")
|
private Long uid;
|
@ExcelProperty("代理")
|
private String agent;
|
@ExcelProperty("口令")
|
private String key;
|
@ExcelProperty("口令提交时间")
|
private String createTime;
|
@ExcelProperty("是否支付成功")
|
private String paySuccess;
|
@ExcelProperty("状态简介")
|
private String stateDesc;
|
@ExcelProperty("订单金额")
|
private String orderMoney;
|
@ExcelProperty("支付时间")
|
private String payTime;
|
@ExcelProperty("支付方式")
|
private String payType;
|
@ExcelProperty("支付设备")
|
private String payDevice;
|
@ExcelProperty("订单号")
|
private String orderNo;
|
@ExcelProperty("订单渠道")
|
private String orderChannel;
|
@ExcelProperty("电商平台")
|
private String platform;
|
@ExcelProperty("总数")
|
private int totalCount;
|
@ExcelProperty("总金额")
|
private String totalMoney;
|
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getPaySuccess() {
|
return paySuccess;
|
}
|
|
public void setPaySuccess(String paySuccess) {
|
this.paySuccess = paySuccess;
|
}
|
|
public String getOrderMoney() {
|
return orderMoney;
|
}
|
|
public void setOrderMoney(String orderMoney) {
|
this.orderMoney = orderMoney;
|
}
|
|
public String getPayType() {
|
return payType;
|
}
|
|
public void setPayType(String payType) {
|
this.payType = payType;
|
}
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
|
public String getOrderChannel() {
|
return orderChannel;
|
}
|
|
public void setOrderChannel(String orderChannel) {
|
this.orderChannel = orderChannel;
|
}
|
|
public int getTotalCount() {
|
return totalCount;
|
}
|
|
public void setTotalCount(int totalCount) {
|
this.totalCount = totalCount;
|
}
|
|
public String getTotalMoney() {
|
return totalMoney;
|
}
|
|
public void setTotalMoney(String totalMoney) {
|
this.totalMoney = totalMoney;
|
}
|
|
public String getPlatform() {
|
return platform;
|
}
|
|
public void setPlatform(String platform) {
|
this.platform = platform;
|
}
|
|
public String getStateDesc() {
|
return stateDesc;
|
}
|
|
public void setStateDesc(String stateDesc) {
|
this.stateDesc = stateDesc;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getPayTime() {
|
return payTime;
|
}
|
|
public void setPayTime(String payTime) {
|
this.payTime = payTime;
|
}
|
|
public String getPayDevice() {
|
return payDevice;
|
}
|
|
public void setPayDevice(String payDevice) {
|
this.payDevice = payDevice;
|
}
|
|
public String getAgent() {
|
return agent;
|
}
|
|
public void setAgent(String agent) {
|
this.agent = agent;
|
}
|
}
|