package com.matrix.system.shopXcx.action; import com.matrix.system.hive.service.SysVipInfoService; 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 SysVipInfoService sysVipInfoService; @Autowired private ShopScoreExchangeDao shopScoreExchangeDao; /** * 记录编辑前的值Before_Edit_Value */ public static final String BEV = "ShopBizUserScore_BEV"; }