店铺 类型查询

This commit is contained in:
2024-11-22 15:13:24 +08:00
parent 38dc6da10c
commit a8ed1b945c

View File

@@ -39,6 +39,9 @@ public class TbShopInfoQueryCriteria{
@Query(type = Query.Type.INNER_LIKE)
private String shopName;
@Query
private String type;
/** 精确 */
@Query
private String phone;
@@ -73,6 +76,12 @@ public class TbShopInfoQueryCriteria{
private String sort;
public void setType(String type) {
if(StringUtils.isNotBlank(type)){
this.type = type;
}
}
public void setShopName(String shopName) {
if(StringUtils.isNotBlank(shopName)){
this.shopName = shopName;