xin
2025-05-29 22abfe68fa5b8a2713369225754759a68bdb2a30
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
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
**/
@Data
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 merchantCode;
 
    @ApiModelProperty(value = "营业执照号")
    private String businessLicense;
 
    @ApiModelProperty(value = "联系手机")
    private String contactMobile;
 
    @ApiModelProperty(value = "状态")
    private String enabled;
    private List<Timestamp> createTime;
}