dy-hu
7 months ago
7 changed files with 89 additions and 5 deletions
-
11cereshop-business/src/main/java/com/shop/cereshop/business/controller/ShopCouponController.java
-
4cereshop-business/src/main/java/com/shop/cereshop/business/dao/tool/CereShopCouponDAO.java
-
41cereshop-business/src/main/java/com/shop/cereshop/business/param/tool/ToolProductNewParam.java
-
2cereshop-business/src/main/java/com/shop/cereshop/business/param/tool/ToolProductParam.java
-
2cereshop-business/src/main/java/com/shop/cereshop/business/service/tool/CereShopCouponService.java
-
4cereshop-business/src/main/java/com/shop/cereshop/business/service/tool/impl/CereShopCouponServiceImpl.java
-
30cereshop-business/src/main/resources/mybatis/mapper/tool/CereShopCouponDAO.xml
@ -0,0 +1,41 @@ |
|||||
|
/* |
||||
|
* Copyright (C) 2017-2021 |
||||
|
* All rights reserved, Designed By 深圳中科鑫智科技有限公司 |
||||
|
* Copyright authorization contact 18814114118 |
||||
|
*/ |
||||
|
package com.shop.cereshop.business.param.tool; |
||||
|
|
||||
|
import com.shop.cereshop.commons.domain.common.PageParam; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 营销活动选择商品请求参数 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "ToolProductParam", description = "营销活动选择商品请求参数") |
||||
|
public class ToolProductNewParam extends PageParam { |
||||
|
|
||||
|
/** |
||||
|
* 店铺id集合 |
||||
|
*/ |
||||
|
@ApiModelProperty(value = "店铺id集合") |
||||
|
private List<Long> shopIds; |
||||
|
|
||||
|
/** |
||||
|
* 活动id |
||||
|
*/ |
||||
|
@ApiModelProperty(value = "活动id") |
||||
|
private Long activityId; |
||||
|
|
||||
|
/** |
||||
|
* 查询类型 2-指定商品可用 3-指定商品不可用 |
||||
|
*/ |
||||
|
@ApiModelProperty(value = "查询类型") |
||||
|
private Integer queryType; |
||||
|
|
||||
|
|
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue