liujie
2023-05-15 6225c37d2f53adf26daf6b4859af5fb5c6fad088
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
package com.stylefeng.guns.modular.system.model;
 
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class OrderListDto {
    @ApiModelProperty("格式  2020-xx-xx xx:xx:xx - 2020-xx-xx xx:xx:xx")
    private String dateRange;
 
    private String customerName;
    @JsonSerialize(
            using = ToStringSerializer.class
    )
    private Long id;
 
    @ApiModelProperty("SALES GROUP")
    private Integer groupId;
 
    @ApiModelProperty("SALES REP")
    private Integer saleId;
 
    @ApiModelProperty("ORDER STATUS")
    private Integer state;
 
    private Integer pageNumber;
 
    private Integer pageSize;
    @ApiModelProperty("0 分配订单 1 公司创建订单")
    private Integer type;
    @ApiModelProperty("卡车公司id 必传")
    private Integer companyId;
}