陶杰
2024-08-22 ee9032d9baf5f33e376d2d2699136e0a7b26bec7
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
package com.mzl.flower.dto.request.supplier;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class QuerySupplierDTO {
 
    private String name;
 
    private String tel;
 
    @ApiModelProperty("审核状态(supplier_status)")
    private String status;
 
    private Long stationId;
 
    @ApiModelProperty("申请时间(yyyy-mm-dd)")
    private String createDateBeginStr;
 
    @ApiModelProperty("申请时间(yyyy-mm-dd)")
    private String createDateEndStr;
 
 
    @ApiModelProperty(value = "申请时间(yyyy-mm-dd)",hidden = true)
    private LocalDateTime createDateBegin;
 
    @ApiModelProperty(value = "申请时间(yyyy-mm-dd)", hidden = true)
    private LocalDateTime createDateEnd;
}