935090232@qq.com
2021-03-07 38072cc8650d65b1f229bb0160909421fbbfde07
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.matrix.system.hive.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.pojo.PaginationDto;
import com.matrix.core.pojo.PaginationVO;
import com.matrix.core.tools.DateUtil;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotNull;
import java.util.Date;
 
/**
 * @author jyy
 * @date 2021-01-27
 **/
@ApiModel(value = "OrderFlowListDto", description = "交易流水查询参数")
public class OrderFlowListDto extends PaginationDto {
 
 
    @ApiModelProperty(value = "客户姓名/拼音/手机")
    private String queryKey;
 
    @ApiModelProperty(value ="操作人")
    private String oprationMan;
 
    @ApiModelProperty(value ="订单号")
    private String orderNo;
 
    @ApiModelProperty(value ="交易类型")
    private String flowType;
 
 
    @ApiModelProperty(value ="支付方式")
    private String payMethod;
 
 
    @JsonFormat(pattern = DateUtil.DATE_FORMAT_DD, timezone = "GMT+8")
    @ApiModelProperty(value = "查询参数开始时间", example = "2021-01-10")
    private Date startTime;
 
 
    @JsonFormat(pattern = DateUtil.DATE_FORMAT_DD, timezone = "GMT+8")
    @ApiModelProperty(value = "查询参数结束时间", example = "2021-01-10")
    private Date endTime;
 
    @ApiModelProperty(hidden = true)
    private Long shopId;
 
 
    @ApiModelProperty(hidden = true)
    private Long companyId;
 
 
    public String getQueryKey() {
        return queryKey;
    }
 
    public void setQueryKey(String queryKey) {
        this.queryKey = queryKey;
    }
 
    public String getOprationMan() {
        return oprationMan;
    }
 
    public void setOprationMan(String oprationMan) {
        this.oprationMan = oprationMan;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public String getFlowType() {
        return flowType;
    }
 
    public void setFlowType(String flowType) {
        this.flowType = flowType;
    }
 
    public String getPayMethod() {
        return payMethod;
    }
 
    public void setPayMethod(String payMethod) {
        this.payMethod = payMethod;
    }
 
    public Date getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
}