Commit a40ef3ab by 魏文甫

Merge branch 'wei_master' into '105'

Wei master

See merge request !14
2 parents b8d94d0a 0437f8ba
...@@ -3,6 +3,8 @@ package com.server.web.controller; ...@@ -3,6 +3,8 @@ package com.server.web.controller;
import com.server.web.common.service.IndexService; import com.server.web.common.service.IndexService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import java.util.Map; import java.util.Map;
...@@ -23,7 +25,8 @@ public class IndexController { ...@@ -23,7 +25,8 @@ public class IndexController {
* *
* @return * @return
*/ */
@RequestMapping("/banner") @ResponseBody
@RequestMapping(value = "/banner", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> banner() { public Map<String, Object> banner() {
return indexService.banner(); return indexService.banner();
} }
...@@ -33,7 +36,8 @@ public class IndexController { ...@@ -33,7 +36,8 @@ public class IndexController {
* *
* @return * @return
*/ */
@RequestMapping("/categoryList") @ResponseBody
@RequestMapping(value = "/categoryList", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> categoryList() { public Map<String, Object> categoryList() {
return indexService.categoryList(); return indexService.categoryList();
} }
...@@ -43,7 +47,8 @@ public class IndexController { ...@@ -43,7 +47,8 @@ public class IndexController {
* *
* @return * @return
*/ */
@RequestMapping("/categoryDetail") @ResponseBody
@RequestMapping(value = "/categoryDetail", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> categoryDetail() { public Map<String, Object> categoryDetail() {
return indexService.categoryDetail(); return indexService.categoryDetail();
} }
...@@ -53,7 +58,8 @@ public class IndexController { ...@@ -53,7 +58,8 @@ public class IndexController {
* *
* @return * @return
*/ */
@RequestMapping("/livingCourseToday") @ResponseBody
@RequestMapping(value = "/livingCourseToday", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> livingCourseToday() { public Map<String, Object> livingCourseToday() {
return indexService.livingCourseToday(); return indexService.livingCourseToday();
} }
......
...@@ -3,9 +3,7 @@ package com.server.web.controller; ...@@ -3,9 +3,7 @@ package com.server.web.controller;
import com.server.web.common.model.TKzyUser; import com.server.web.common.model.TKzyUser;
import com.server.web.common.service.InformationService; import com.server.web.common.service.InformationService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import java.util.Map; import java.util.Map;
...@@ -24,7 +22,8 @@ public class InformationController extends BaseController { ...@@ -24,7 +22,8 @@ public class InformationController extends BaseController {
* *
* @return * @return
*/ */
@RequestMapping("/secondClassList") @ResponseBody
@RequestMapping(value = "/secondClassList", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> secondClassList(HttpServletRequest request, @RequestParam(value = "firstId") Long firstId) { public Map<String, Object> secondClassList(HttpServletRequest request, @RequestParam(value = "firstId") Long firstId) {
return informationService.secondClassList(firstId); return informationService.secondClassList(firstId);
} }
...@@ -34,7 +33,8 @@ public class InformationController extends BaseController { ...@@ -34,7 +33,8 @@ public class InformationController extends BaseController {
* *
* @return * @return
*/ */
@RequestMapping("/secondClassDetail") @ResponseBody
@RequestMapping(value = "/secondClassDetail", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> secondClassDetail(HttpServletRequest request, @RequestParam(value = "secondId") Long secondId, public Map<String, Object> secondClassDetail(HttpServletRequest request, @RequestParam(value = "secondId") Long secondId,
@RequestParam(value = "pageNo", defaultValue = "1") Integer pageNo, @RequestParam(value = "pageSize") Integer pageSize) { @RequestParam(value = "pageNo", defaultValue = "1") Integer pageNo, @RequestParam(value = "pageSize") Integer pageSize) {
return informationService.secondClassDetail(secondId, pageNo, pageSize); return informationService.secondClassDetail(secondId, pageNo, pageSize);
...@@ -47,7 +47,8 @@ public class InformationController extends BaseController { ...@@ -47,7 +47,8 @@ public class InformationController extends BaseController {
* @param informationId * @param informationId
* @return * @return
*/ */
@RequestMapping("/informationDetail") @ResponseBody
@RequestMapping(value = "/informationDetail", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> informationDetail(HttpServletRequest request, @RequestParam(value = "informationId") Long informationId) { public Map<String, Object> informationDetail(HttpServletRequest request, @RequestParam(value = "informationId") Long informationId) {
return informationService.informationDetail(informationId); return informationService.informationDetail(informationId);
} }
...@@ -61,7 +62,8 @@ public class InformationController extends BaseController { ...@@ -61,7 +62,8 @@ public class InformationController extends BaseController {
* @param pageSize * @param pageSize
* @return * @return
*/ */
@RequestMapping("/informationCommentList") @ResponseBody
@RequestMapping(value = "/informationCommentList", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> informationCommentList(HttpServletRequest request, @RequestParam(value = "informationId") Long informationId, public Map<String, Object> informationCommentList(HttpServletRequest request, @RequestParam(value = "informationId") Long informationId,
@RequestParam(value = "pageNo", defaultValue = "1") Integer pageNo, @RequestParam(value = "pageSize") Integer pageSize) { @RequestParam(value = "pageNo", defaultValue = "1") Integer pageNo, @RequestParam(value = "pageSize") Integer pageSize) {
return informationService.informationCommentList(informationId, pageNo, pageSize); return informationService.informationCommentList(informationId, pageNo, pageSize);
...@@ -74,7 +76,8 @@ public class InformationController extends BaseController { ...@@ -74,7 +76,8 @@ public class InformationController extends BaseController {
* @param comment * @param comment
* @return * @return
*/ */
@RequestMapping("/informationComment") @ResponseBody
@RequestMapping(value = "/informationComment", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> informationComment(HttpServletRequest request, @RequestParam(value = "informationId") Long informationId, @RequestParam(value = "comment") String comment) { public Map<String, Object> informationComment(HttpServletRequest request, @RequestParam(value = "informationId") Long informationId, @RequestParam(value = "comment") String comment) {
TKzyUser tKzyUser = getLoginUser(request); TKzyUser tKzyUser = getLoginUser(request);
Long userId = null; Long userId = null;
......
...@@ -3,6 +3,7 @@ package com.server.web.controller; ...@@ -3,6 +3,7 @@ package com.server.web.controller;
import com.server.utils.ResultMapUtil; import com.server.utils.ResultMapUtil;
import com.server.utils.SendSMSUtil; import com.server.utils.SendSMSUtil;
import com.server.utils.VerifyCodeUtils; import com.server.utils.VerifyCodeUtils;
import com.server.web.common.mapper.TKzyUserMapper;
import com.server.web.common.model.TKzyUser; import com.server.web.common.model.TKzyUser;
import com.server.web.common.model.TKzyUserExample; import com.server.web.common.model.TKzyUserExample;
import com.server.web.common.service.UserService; import com.server.web.common.service.UserService;
...@@ -26,15 +27,22 @@ import java.util.concurrent.TimeUnit; ...@@ -26,15 +27,22 @@ import java.util.concurrent.TimeUnit;
public class UserController extends BaseController { public class UserController extends BaseController {
@Autowired @Autowired
UserService userService; UserService userService;
@Autowired
private TKzyUserMapper tKzyUserMapper;
@PostMapping("/userData") @ResponseBody
@RequestMapping(value = "/userData", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map userData(HttpServletRequest request) { public Map userData(HttpServletRequest request) {
TKzyUser loginUser = getLoginUser(request); TKzyUser loginUser = getLoginUser(request);
if (loginUser != null && loginUser.getId() != null) {
loginUser = tKzyUserMapper.selectByPrimaryKey(loginUser.getId());
}
return returnSuccess(loginUser); return returnSuccess(loginUser);
} }
@PostMapping("/register") @ResponseBody
@RequestMapping(value = "/register", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map register(HttpServletRequest request) { public Map register(HttpServletRequest request) {
TKzyUser user = getLoginUser(request); TKzyUser user = getLoginUser(request);
String phone = request.getParameter("phone"); String phone = request.getParameter("phone");
...@@ -86,7 +94,8 @@ public class UserController extends BaseController { ...@@ -86,7 +94,8 @@ public class UserController extends BaseController {
return returnSuccess(user); return returnSuccess(user);
} }
@PostMapping("/update") @ResponseBody
@RequestMapping(value = "/update", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map update(HttpServletRequest request) { public Map update(HttpServletRequest request) {
TKzyUser loginUser = getLoginUser(request); TKzyUser loginUser = getLoginUser(request);
if (loginUser == null) { if (loginUser == null) {
...@@ -222,7 +231,7 @@ public class UserController extends BaseController { ...@@ -222,7 +231,7 @@ public class UserController extends BaseController {
* @return * @return
*/ */
@ResponseBody @ResponseBody
@RequestMapping(value = "/signIn", method = {RequestMethod.POST,RequestMethod.GET},produces = "application/json") @RequestMapping(value = "/signIn", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> signIn(HttpServletRequest request) { public Map<String, Object> signIn(HttpServletRequest request) {
TKzyUser loginUser = getLoginUser(request); TKzyUser loginUser = getLoginUser(request);
if (loginUser == null || loginUser.getId() == null) { if (loginUser == null || loginUser.getId() == null) {
...@@ -238,7 +247,7 @@ public class UserController extends BaseController { ...@@ -238,7 +247,7 @@ public class UserController extends BaseController {
* @return * @return
*/ */
@ResponseBody @ResponseBody
@RequestMapping(value = "/signInList", method = {RequestMethod.POST,RequestMethod.GET},produces = "application/json") @RequestMapping(value = "/signInList", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map<String, Object> signInList(HttpServletRequest request) { public Map<String, Object> signInList(HttpServletRequest request) {
TKzyUser loginUser = getLoginUser(request); TKzyUser loginUser = getLoginUser(request);
if (loginUser == null || loginUser.getId() == null) { if (loginUser == null || loginUser.getId() == null) {
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
WHERE WHERE
t.source_type = 1 t.source_type = 1
AND t.user_id = #{userId,jdbcType=BIGINT} AND t.user_id = #{userId,jdbcType=BIGINT}
AND DATE_FORMAT(t.create_dt, '%Y-%m-%') = #{todya,jdbcType=VARCHAR} AND DATE_FORMAT(t.create_dt, '%Y-%m-%') = #{today,jdbcType=VARCHAR}
limit t.id DESC limit 0,1 ORDER BY t.id DESC limit 0,1
</select> </select>
</mapper> </mapper>
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!