| | |
| | | import com.ks.lucky.remote.service.LuckyActivityAwardService; |
| | | import net.sf.json.JSONArray; |
| | | import net.sf.json.JSONObject; |
| | | import org.apache.dubbo.config.annotation.Reference; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | |
| | | @RequestMapping("api/client/activity/awards") |
| | | public class ActivityAwardsController { |
| | | |
| | | @Resource |
| | | @Reference(version = "1.0") |
| | | private LuckyActivityAwardResultService luckyActivityAwardResultService; |
| | | |
| | | @Resource |
| | | @Reference(version = "1.0") |
| | | private LuckyActivityAwardService luckyActivityAwardService; |
| | | |
| | | @Resource |