jyy
2021-03-18 bd276223343b32723e469f2e6e3f414572502b4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.matrix.system.shopXcx.action;
 
import com.matrix.biz.service.BizUserService;
import com.matrix.system.shopXcx.dao.ShopScoreExchangeDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
 
 
/**
 * @author jyy
 * @description 微商城会员积分控制器
 * @date 2019-06-05 10:15
 */
@Controller
@RequestMapping(value = "admin/bizUserScore")
public class ShopBizUserScoreAction {
 
    @Autowired
    private BizUserService bizUserService;
    @Autowired
    private ShopScoreExchangeDao shopScoreExchangeDao;
 
    /**
     * 记录编辑前的值Before_Edit_Value
     */
    public static final String BEV = "ShopBizUserScore_BEV";
 
 
}