Merge remote-tracking branch 'origin/test' into test
This commit is contained in:
@@ -17,6 +17,7 @@ package cn.ysk.cashier.dto.shop;
|
|||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import cn.ysk.cashier.annotation.Query;
|
import cn.ysk.cashier.annotation.Query;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @website https://eladmin.vip
|
* @website https://eladmin.vip
|
||||||
@@ -38,6 +39,9 @@ public class TbShopInfoQueryCriteria{
|
|||||||
@Query(type = Query.Type.INNER_LIKE)
|
@Query(type = Query.Type.INNER_LIKE)
|
||||||
private String shopName;
|
private String shopName;
|
||||||
|
|
||||||
|
@Query
|
||||||
|
private String type;
|
||||||
|
|
||||||
/** 精确 */
|
/** 精确 */
|
||||||
@Query
|
@Query
|
||||||
private String phone;
|
private String phone;
|
||||||
@@ -71,4 +75,16 @@ public class TbShopInfoQueryCriteria{
|
|||||||
private Integer size;
|
private Integer size;
|
||||||
|
|
||||||
private String sort;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user