cloudroam
2025-01-09 9628b3362c1624dd373c1ab1d7a55e72104b972e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.mzl.flower.dto.response.payment;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.mzl.flower.base.AbstractTransDTO;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
public class OrderListExportDTO extends AbstractTransDTO {
    @ApiModelProperty(value = "订单单号")
    private String orderNo;
 
    @ApiModelProperty(value = "下单人")
    private String createName;
 
    @ApiModelProperty(value = "收货人")
    private String customer;
 
    @ApiModelProperty(value = "收货人手机号码")
    private String customerTel;
 
    @ApiModelProperty(value = "收货地址")
    private String customerAddress;
 
    @ApiModelProperty(value = "订单金额")
    private BigDecimal totalAmount;
 
    @ApiModelProperty(value = "花农底价")
    private BigDecimal supplierAmount;
 
    @ApiModelProperty(value = "状态")
    private String statusBackendStr;
 
    @ApiModelProperty(value = "订单扎数")
    private Integer saleNum;
 
    @ApiModelProperty(value = "下单时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @DateTimeFormat
    private LocalDateTime createTime;
 
    @ApiModelProperty(value = "合伙人名称")
    private String partnerName;
 
    @ApiModelProperty(value = "库位名称")
    private String warehouseLocationCode;
 
    @ApiModelProperty(value = "特殊需求")
    private String specialNeedsStr;
 
    @ApiModelProperty(value = "留言")
    private String remarks;
 
    @ApiModelProperty(value = "快递号")
    private String logisticsCompanyCode;
 
}