彭雪彬
2025-07-14 c1d20b425b10e8ba59f102dd1ab413055883eed0
oying-system/src/main/java/com/oying/modules/system/domain/dto/MerchantsQueryCriteria.java
@@ -1,16 +1,18 @@
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;
@@ -18,17 +20,11 @@
    @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;