From 4bc4552a6818fff0fbf1375669a7b1e5fa58ab17 Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期日, 28 九月 2025 09:34:18 +0800
Subject: [PATCH] 店铺优惠卷调整

---
 framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java b/framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java
index 44c4759..5fb8232 100644
--- a/framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java
+++ b/framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java
@@ -1,11 +1,13 @@
 package cn.lili.modules.lmk.service;
 
 import cn.lili.modules.lmk.domain.entity.StoreCoupon;
+import cn.lili.modules.lmk.domain.query.StoreCouponSingleQuery;
 import com.baomidou.mybatisplus.extension.service.IService;
 import cn.lili.base.Result;
 import cn.lili.modules.lmk.domain.form.StoreCouponForm;
 import cn.lili.modules.lmk.domain.query.StoreCouponQuery;
 import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
 
 import java.util.List;
 
@@ -19,6 +21,7 @@
 
     /**
      * 娣诲姞
+     *
      * @param form
      * @return
      */
@@ -26,6 +29,7 @@
 
     /**
      * 淇敼
+     *
      * @param form
      * @return
      */
@@ -33,6 +37,7 @@
 
     /**
      * 鎵归噺鍒犻櫎
+     *
      * @param ids
      * @return
      */
@@ -40,6 +45,7 @@
 
     /**
      * id鍒犻櫎
+     *
      * @param id
      * @return
      */
@@ -47,6 +53,7 @@
 
     /**
      * 鍒嗛〉鏌ヨ
+     *
      * @param query
      * @return
      */
@@ -54,6 +61,7 @@
 
     /**
      * 鏍规嵁id鏌ユ壘
+     *
      * @param id
      * @return
      */
@@ -61,9 +69,18 @@
 
     /**
      * 鍒楄〃
+     *
      * @return
      */
     Result all();
 
     Result getCoupon(String id);
+
+    Result addStoreCoupon(StoreCouponForm storeCoupon);
+
+    Result changeStatus(String id);
+
+    Result generateStoreCoupon(String id);
+
+    Result getPageByStoreCoupon(StoreCouponSingleQuery query);
 }

--
Gitblit v1.8.0