Java开源生鲜电商平台-优惠券设计与架构(源码可下载)详解编程语言

Java开源生鲜电商平台-优惠券设计与架构(源码可下载)

说明:现在电商白热化的程度,无论是生鲜电商还是其他的电商等等,都会有促销的这个体系,目的就是增加订单量与知名度等等

           那么对于Java开源生鲜电商平台而言,我们采用优惠券的这种方式进行促销。(补贴价格战对烧钱而言非常的恐怖的,太烧钱了)

1. 优惠券基础信息表

说明:任何一个优惠券或者说代金券都是有一个基础的说明,比如:优惠券名称,类型,价格,有效期,状态,说明等等基础信息。

CREATE TABLE `coupon` ( 
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自动增加ID', 
  `region_id` bigint(20) DEFAULT NULL COMMENT '所属区域', 
  `type` int(11) DEFAULT NULL COMMENT '所属类型,1为满减', 
  `name` varchar(32) DEFAULT NULL COMMENT '优惠券名称', 
  `img` varchar(64) DEFAULT NULL COMMENT '图片的URL地址', 
  `start_time` datetime DEFAULT NULL COMMENT '优惠券开始时间', 
  `end_time` datetime DEFAULT NULL COMMENT '优惠券结束时间', 
  `money` decimal(11,2) DEFAULT NULL COMMENT '优惠券金额,用整数,固定值目前。', 
  `status` int(11) DEFAULT NULL COMMENT '状态,0表示未开始,1表示进行中,-1表示结束', 
  `remarks` varchar(512) DEFAULT NULL COMMENT '优惠券的说明', 
  `create_time` datetime DEFAULT NULL COMMENT '创建时间', 
  `full_money` decimal(12,2) DEFAULT NULL COMMENT '金额满', 
  PRIMARY KEY (`id`) 
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠券基础配置表';

说明:业务说可以规定某个区域,做优惠券,而且是纳新后才有,这样增加买家用户。价格可以后端进行设置。

           状态的意义在于,用户需要注册完成后,然后主动认领才有效,为什么要这样设计呢?目的只有一个:让用户在对APP这个软件玩一会儿,增加熟悉程度.

2. 优惠券领取记录表

说明:我们需要记录那个买家,什么时候进行的领取,领取的的时间,券的额度是多少等等,是否已经使用等信息

CREATE TABLE `coupon_receive` ( 
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自动增加ID', 
  `buyer_id` bigint(20) DEFAULT NULL COMMENT '买家ID', 
  `coupon_id` bigint(20) DEFAULT NULL COMMENT '优惠券编号', 
  `coupon_money` decimal(12,2) DEFAULT NULL COMMENT '券额', 
  `create_time` datetime DEFAULT NULL COMMENT '领取时间', 
  `full_money` decimal(12,2) DEFAULT NULL COMMENT '金额满', 
  `status` int(11) DEFAULT NULL COMMENT '状态,1为已使用,0为已领取未使用,-1为已过期', 
  PRIMARY KEY (`id`) 
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠券领取记录表';

3.优惠券消费记录表

说明:优惠券消费记录表,是需要知道那个买家,那个优惠券,那个订单使用了优惠券,这边有个特别注意的地方是,这个优惠券的执行在支付成功后的回调。

CREATE TABLE `coupon_logs` ( 
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自动增加ID', 
  `buyer_id` bigint(20) DEFAULT NULL COMMENT '买家ID', 
  `coupon_receive_id` bigint(20) DEFAULT NULL COMMENT '优惠券id', 
  `order_number` varchar(64) DEFAULT NULL COMMENT '订单号', 
  `order_original_amount` decimal(12,2) DEFAULT NULL COMMENT '原订单金额', 
  `coupon_amount` decimal(11,2) DEFAULT NULL COMMENT '优惠券的金额', 
  `order_final_amount` decimal(12,2) DEFAULT NULL COMMENT '抵扣优惠券之后的订单金额', 
  `create_time` datetime DEFAULT NULL COMMENT '领取时间', 
  `status` int(2) DEFAULT '0' COMMENT '日志状态: 默认为0,支付回调成功后为1', 
  PRIMARY KEY (`id`) 
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠券消费记录表';

说明:相对而言,优惠券的难度不算大,重点的是业务方面的指导与学习,包括数据库的架构与设计等等,还有就是思路的学习。

相关核心代码如下:

APP需要后台提供以下几个接口:

3.1 查询所有买家的优惠券。

3.2 判断买家是否可以领取优惠券。

3.3 买家主动领取优惠券

/** 
 * 优惠券controller 
 */ @RestController 
@RequestMapping("/buyer/coupon") 
public class CouponController extends BaseController { 
 private static final Logger logger = LoggerFactory.getLogger(CouponController.class); 
    @Autowired private CouponReceiveService couponReceiveService; 
    @Autowired private UsersService usersService; 
 /** 
     * 查询买家所有优惠券 
     *  
     * @param request 
     * @param response 
     * @param buyerId 
     * @return 
     */ 
    @RequestMapping(value = "/list", method = { RequestMethod.GET, RequestMethod.POST }) 
    public JsonResult getCouponList(HttpServletRequest request, HttpServletResponse response, Long buyerId) { 
        try { 
            if (buyerId == null) { 
                return new JsonResult(JsonResultCode.FAILURE, "买家不存在", ""); 
            } 
            List<CouponReceive> result = couponReceiveService.selectAllByBuyerId(buyerId); 
            return new JsonResult(JsonResultCode.SUCCESS, "查询成功", result); 
        } catch (Exception ex) { 
            logger.error("[CouponController][getCouponList] exception", ex); 
            return new JsonResult(JsonResultCode.FAILURE, "系统错误,请稍后重试", ""); 
        } 
    } 
 /** 
     * 判断买家是否可以领取优惠券 
     *  
     * @param request 
     * @param response 
     * @param buyerId 
     * @return 
     */ 
    @RequestMapping(value = "/judge", method = { RequestMethod.GET, RequestMethod.POST }) 
    public JsonResult judgeReceive(HttpServletRequest request, HttpServletResponse response, Long buyerId) { 
        try { 
            // 判断当前用户是否可用 
            Users users = usersService.getUsersById(buyerId); if (users == null) {            
                logger.info("OrderController.judgeReceive.buyerId " + buyerId); 
                return new JsonResult(JsonResultCode.FAILURE, "你的账号有误,请重新登录", ""); 
            } 
            int status = users.getStatus(); 
            if (UserStatus.FORBIDDEN == status) { 
            return new JsonResult(JsonResultCode.FAILURE, "你的账号已经被禁用了,请联系公司客服", ""); 
            } 
            List<Coupon> result = couponReceiveService.selectByBuyerId(buyerId); 
            if (CollectionUtils.isEmpty(result)) { 
                result = new ArrayList<Coupon>(); 
            } 
            return new JsonResult(JsonResultCode.SUCCESS, "查询成功", result); 
        } catch (Exception ex) { 
            logger.error("[CouponController][judgeReceive] exception", ex); 
            return new JsonResult(JsonResultCode.FAILURE, "系统错误,请稍后重试", ""); 
        } 
    } 
 /** 
     * 买家领取优惠券 
     *  
     * @param request 
     * @param response 
     * @param buyerId 
     * @return 
     */ 
    @RequestMapping(value = "/add", method = { RequestMethod.GET, RequestMethod.POST }) 
    public JsonResult saveCoupon(HttpServletRequest request, HttpServletResponse response, Long buyerId, 
            Long couponId) { 
            try { 
            // 判断当前用户是否可用 
            Users users = usersService.getUsersById(buyerId); 
            if (users == null) { 
                logger.info("OrderController.saveCoupon.buyerId " + buyerId); 
                return new JsonResult(JsonResultCode.FAILURE, "你的账号有误,请重新登录", ""); 
            } //判断当前用户的状态是否可用 
            int status = users.getStatus(); 
            if (UserStatus.FORBIDDEN == status) { 
                return new JsonResult(JsonResultCode.FAILURE, "你的账号已经被禁用了,请联系公司客服", ""); 
            } 
            if (couponId == null) { 
                return new JsonResult(JsonResultCode.SUCCESS, "活动已经结束", ""); 
            } 
            //新增 
            int result = couponReceiveService.insert(buyerId, couponId); 
            if (result == -1) { 
                return new JsonResult(JsonResultCode.SUCCESS, "领取失败,已经领取过优惠券了", ""); 
            } else if (result == 0) { 
                return new JsonResult(JsonResultCode.FAILURE, "领取失败,活动已经结束", ""); 
            } else { 
                return new JsonResult(JsonResultCode.SUCCESS, "领取成功", ""); 
            } 
        } catch (Exception ex) { 
            logger.error("[CouponController][saveCoupon] exception", ex); 
            return new JsonResult(JsonResultCode.FAILURE, "系统错误,请稍后重试", ""); 
        } 
    } 
}

最终总结:用户优惠券会发放在买家的APP中的个人中心里面,然后进行点击查看与领取,然后在支付的时候会自动显示出优惠券的数据,非常的灵活与方便。

Java开源生鲜电商平台-优惠券设计与架构(源码可下载),如果需要下载的话,可以在我的github下面进行下载。

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/7486.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论