‘linchangsheng’ il y a 1 mois
Parent
commit
de28aea967

+ 1 - 1
src/main/java/com/gree/mall/manager/bean/admin/AdminWebsitVO.java

@@ -52,7 +52,7 @@ public class AdminWebsitVO   {
     private String address;
 
     @ApiModelProperty(value = "收款商户号")
-    private String payWorkerName;
+    private String payWorkerCodeName;
 
     @ZfireField(hide = true)
     @ApiModelProperty(value = "师傅收款电子支付商户")

+ 112 - 0
src/main/java/com/gree/mall/manager/bean/coupon/CouponVO.java

@@ -0,0 +1,112 @@
+package com.gree.mall.manager.bean.coupon;
+
+import com.baomidou.mybatisplus.annotation.FieldFill;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.gree.mall.manager.plus.entity.Coupon;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+@ApiModel
+@Data
+public class CouponVO  {
+
+    @ApiModelProperty(value = "优惠券id")
+    @TableId(value = "coupon_id", type = IdType.ID_WORKER_STR)
+    private String couponId;
+
+    @ApiModelProperty(value = "优惠券名称")
+    private String couponName;
+
+    @ApiModelProperty(value = "发放总量")
+    private Integer couponAmount;
+
+    @ApiModelProperty(value = "优惠券图片")
+    private String imgSrc;
+
+    @ApiModelProperty(value = "类型 SATISFY=满减券 DISCOUNT=折扣券 RANDOM=随机金额券  GOODS=商品券")
+    private String couponType;
+
+    @ApiModelProperty(value = "订单满足金额 0=没门槛")
+    private BigDecimal orderAmount;
+
+    @ApiModelProperty(value = "用券时间类型 1=统一指定时间 2=领券当日起多少天可用 3=领券次日起多少天可用")
+    private Integer activeType;
+
+    @ApiModelProperty(value = "多少天后过期")
+    private Integer activeDay;
+
+    @ApiModelProperty(value = "优惠券使用开始时间")
+    private Date activeStartTime;
+
+    @ApiModelProperty(value = "优惠券使用结束时间")
+    private Date activeEndTime;
+
+    @ApiModelProperty(value = "领取人群 0=所有会员 1=指定标签 2=指定会员 3=全部业务员,4=全部普通用户")
+    private Integer receiveCrowd;
+
+    @ApiModelProperty(value = "每人限领次数 0=不限次数")
+    private Integer receiveLimitCount;
+
+    @ApiModelProperty(value = "限制原价商品 false=不限制 true=限制")
+    private Boolean originalPriceLimit;
+
+    @ApiModelProperty(value = "排序(降序)")
+    private Integer sortNum;
+
+    @ApiModelProperty(value = "优惠值")
+    private BigDecimal couponValue;
+
+    @ApiModelProperty(value = "使用说明")
+    private String note;
+
+    @ApiModelProperty(value = "优惠券领取开始时间")
+    private Date obtainStartTime;
+
+    @ApiModelProperty(value = "优惠券领取结束时间")
+    private Date obtainEndTime;
+
+    @ApiModelProperty(value = "券显示时间")
+    private Date displayTime;
+
+    @ApiModelProperty(value = "发布开始时间")
+    private Date releaseStartTime;
+
+    @ApiModelProperty(value = "发布结束时间")
+    private Date releaseEndTime;
+
+    @ApiModelProperty(value = "标志 WAIT=待发布 START=进行中 END=结束 CANCEL=取消")
+    private String flag;
+
+    @ApiModelProperty(value = "领取数量")
+    private Integer receiveAmount;
+
+    @ApiModelProperty(value = "剩余数量")
+    private Integer leftAmount;
+
+    @ApiModelProperty(value = "备注")
+    private String remark;
+
+    @ApiModelProperty(value = "是否可以转让,1:可转让,0:不可转让")
+    private Boolean transferType;
+
+    @ApiModelProperty(value = "创建时间")
+    @TableField(fill = FieldFill.INSERT)
+    private Date createTime;
+
+    @ApiModelProperty(value = "业务员券分享次数")
+    private Integer shareTimes;
+
+    @ApiModelProperty(value = "企业微信id")
+    private String companyWechatId;
+
+    @ApiModelProperty(value = "企业名称")
+    private String companyName;
+
+
+}

+ 13 - 3
src/main/java/com/gree/mall/manager/controller/coupon/CouponController.java

@@ -53,12 +53,12 @@ public class CouponController {
     @ZfireList
     @PostMapping("/list")
     @ApiOperation(value = "优惠券列表V2")
-    public ResponseHelper<IPage<CouponPageBean>> list(
+    public ResponseHelper<IPage<CouponVO>> list(
             @RequestBody ZfireParamBean zfireParamBean
     ) throws RemoteServiceException {
         ZfireParamBean zfireParam = FieldUtils.supplyParam(zfireParamBean);
-        //IPage<AdminWebsitVO> adminDeptVOIPage = couponLogic.list(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam);
-        return null;
+        IPage<CouponVO> couponVOIPage = couponLogic.list(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam);
+        return ResponseHelper.success(couponVOIPage, new TypeReference<CouponVO>() {});
     }
 
     @PostMapping("/list/export")
@@ -104,6 +104,16 @@ public class CouponController {
         return ResponseHelper.success();
     }
 
+    @PostMapping("/cancel")
+    @ApiOperation(value = "取消券")
+    public ResponseHelper cancel(
+            HttpServletRequest request,
+            @ApiParam(value = "id",required = true) @RequestParam String couponId)
+            throws RemoteServiceException {
+        couponLogic.cancel(couponId);
+        return ResponseHelper.success();
+    }
+
 
     @PostMapping("/reissue")
     @ApiOperation(value = "补发业务员券")

+ 11 - 0
src/main/java/com/gree/mall/manager/logic/coupon/CouponLogic.java

@@ -1,6 +1,7 @@
 package com.gree.mall.manager.logic.coupon;
 
 import cn.hutool.core.date.DateUtil;
+import com.aliyuncs.ram.model.v20150501.GetUserResponse;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.gree.mall.manager.bean.ExcelData;
@@ -17,6 +18,7 @@ import com.gree.mall.manager.plus.entity.*;
 import com.gree.mall.manager.plus.service.*;
 import com.gree.mall.manager.utils.DateUtils;
 import com.gree.mall.manager.utils.excel.ExcelUtils;
+import com.gree.mall.manager.zfire.bean.ZfireParamBean;
 import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.collections.CollectionUtils;
 import org.apache.commons.lang3.StringUtils;
@@ -683,4 +685,13 @@ public class CouponLogic {
         userCouponService.saveBatch(userCouponList);
     }
 
+    public void cancel(String couponId) {
+        userCouponService.lambdaUpdate()
+                .eq(UserCoupon::getCouponId,couponId)
+                .eq(UserCoupon::getStatus,false).remove();
+    }
+
+    public IPage<CouponVO> list(Page page, ZfireParamBean zfireParam) {
+        return null;
+    }
 }