package com.matrix.system.shopXcx.action;
|
|
import com.matrix.biz.bean.BizUser;
|
import com.matrix.biz.service.BizUserService;
|
import com.matrix.core.anotations.RemoveRequestToken;
|
import com.matrix.core.anotations.SaveRequestToken;
|
import com.matrix.core.constance.MatrixConstance;
|
import com.matrix.core.pojo.AjaxResult;
|
import com.matrix.core.tools.StringUtils;
|
import com.matrix.core.tools.WebUtil;
|
import com.matrix.system.common.bean.SysUsers;
|
import com.matrix.system.shopXcx.bean.ShopScoreExchange;
|
import com.matrix.system.shopXcx.dao.ShopScoreExchangeDao;
|
import com.matrix.system.shopXcx.pojo.ExchangeScorePOJO;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Controller;
|
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
import org.springframework.web.servlet.ModelAndView;
|
|
import java.util.Date;
|
|
|
/**
|
* @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";
|
|
|
|
|
\
|
|
|
}
|