|
@@ -0,0 +1,30 @@
|
|
|
+package com.iamberry.wechat.handles.admin;
|
|
|
+
|
|
|
+import com.iamberry.wechat.core.entity.admin.FullReduction;
|
|
|
+import com.iamberry.wechat.face.member.MemberService;
|
|
|
+import com.iamberry.wechat.face.wechat.WeChatService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+
|
|
|
+
|
|
|
+ * 2019 38妇女节 活动
|
|
|
+ * Created by Administrator on 2019/3/5.
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/admin/fullReduction")
|
|
|
+public class FullReductionHandler {
|
|
|
+ @Autowired
|
|
|
+ private MemberService memberService;
|
|
|
+ @Autowired
|
|
|
+ private WeChatService weChatService;
|
|
|
+
|
|
|
+
|
|
|
+ @ResponseBody
|
|
|
+ public String addFullReduction(HttpServletRequest request,String openid){
|
|
|
+ return weChatService.addFullReduction(openid);
|
|
|
+ }*/
|
|
|
+}
|