| | |
| | | package com.oying.modules.system.domain.dto; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.sql.Timestamp; |
| | | import java.util.List; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | /** |
| | | * @author lixin |
| | | * @date 2025-05-29 |
| | | **/ |
| | | * @author lixin |
| | | * @date 2025-05-29 |
| | | **/ |
| | | @Data |
| | | public class MerchantsQueryCriteria{ |
| | | public class MerchantsQueryCriteria { |
| | | |
| | | @ApiModelProperty(value = "页码", example = "1") |
| | | private Integer page = 1; |
| | |
| | | @ApiModelProperty(value = "每页数据量", example = "10") |
| | | private Integer size = 10; |
| | | |
| | | @ApiModelProperty(value = "名称") |
| | | private String merchantName; |
| | | @ApiModelProperty(value = "模糊查询(名称、商户编码、营业执照号、联系手机)") |
| | | private String blurry; |
| | | |
| | | @ApiModelProperty(value = "商户编码") |
| | | private String merchantCode; |
| | | |
| | | @ApiModelProperty(value = "营业执照号") |
| | | private String businessLicense; |
| | | |
| | | @ApiModelProperty(value = "联系手机") |
| | | private String contactMobile; |
| | | @ApiModelProperty(value = "状态") |
| | | private String merchantType; |
| | | |
| | | @ApiModelProperty(value = "状态") |
| | | private String enabled; |