菜单 子集
存酒 购买须知 团购商品 用户列表
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package cn.ysk.cashier.dto.shop;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ShopStorageGoodDto {
|
||||
/** 单位 */
|
||||
private String unit;
|
||||
/** 有效期(天) */
|
||||
private Integer period;
|
||||
/** 0:手动;1:商品; */
|
||||
private Integer source;
|
||||
/** 商户Id */
|
||||
private Integer shopId;
|
||||
|
||||
private List<DetailInfo> goods;
|
||||
@Data
|
||||
public static class DetailInfo {
|
||||
private String name;
|
||||
private String imgUrl;
|
||||
}
|
||||
}
|
||||
@@ -175,6 +175,7 @@ public class TbShopInfoDto implements Serializable {
|
||||
private String profiles;
|
||||
|
||||
private String isOpenYhq;
|
||||
private Integer isUseVip;
|
||||
/**
|
||||
* 商家二维码
|
||||
*/
|
||||
|
||||
@@ -31,6 +31,7 @@ public class TbShopStorageDto implements Serializable {
|
||||
|
||||
/** 用户Id */
|
||||
private Integer userid;
|
||||
private String headImg;
|
||||
|
||||
/** 用户昵称 */
|
||||
private String nickname;
|
||||
|
||||
@@ -8,17 +8,24 @@ import cn.ysk.cashier.annotation.Query;
|
||||
* @date 2024-05-21
|
||||
**/
|
||||
@Data
|
||||
public class TbShopStorageGoodQueryCriteria{
|
||||
public class TbShopStorageGoodQueryCriteria {
|
||||
|
||||
/** 模糊 */
|
||||
/**
|
||||
* 模糊
|
||||
*/
|
||||
@Query(type = Query.Type.INNER_LIKE)
|
||||
private String name;
|
||||
|
||||
/** 精确 */
|
||||
/**
|
||||
* 精确
|
||||
*/
|
||||
@Query
|
||||
private Integer shopId;
|
||||
|
||||
@Query
|
||||
private Integer isDel = 0;
|
||||
|
||||
private Integer page=0;
|
||||
private Integer size=10;
|
||||
|
||||
private Integer page = 0;
|
||||
private Integer size = 10;
|
||||
}
|
||||
@@ -1,41 +1,32 @@
|
||||
/*
|
||||
* Copyright 2019-2020 Zheng Jie
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
* Copyright 2019-2020 Zheng Jie
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package cn.ysk.cashier.dto.shop;
|
||||
|
||||
import lombok.Data;
|
||||
import cn.ysk.cashier.annotation.Query;
|
||||
|
||||
/**
|
||||
* @website https://eladmin.vip
|
||||
* @author lyf
|
||||
* @date 2024-03-01
|
||||
**/
|
||||
@Data
|
||||
public class TbShopUserQueryCriteria{
|
||||
public class TbShopUserQueryCriteria {
|
||||
|
||||
/** 模糊 */
|
||||
@Query(type = Query.Type.INNER_LIKE)
|
||||
private String name;
|
||||
|
||||
/** 模糊 */
|
||||
@Query(type = Query.Type.INNER_LIKE)
|
||||
private String telephone;
|
||||
|
||||
@Query
|
||||
private String shopId;
|
||||
@Query
|
||||
|
||||
private Integer isVip;
|
||||
|
||||
private Long page=1L;
|
||||
private Long size=10L;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user