| 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; | 
|   | 
|     @ApiModelProperty("启用/禁用(USER_ENABLED_OR_DISABLED)") | 
|     private Integer isEnabled; | 
| } |