44323
2024-05-16 80870e154d7755c36cdb345147532c131858e270
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.management.api.query;
 
import com.ruoyi.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "通过门店名称和公司名称Query")
public class ShopByShopNameAndCompanyNameQuery extends BasePage {
    @ApiModelProperty("门店名称")
    private String shopName;
    @ApiModelProperty("公司名称")
    private String companyName;
}