TestController.java 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package com.enteprise.web.controller.tool;
  2. import java.util.ArrayList;
  3. import java.util.LinkedHashMap;
  4. import java.util.List;
  5. import java.util.Map;
  6. import org.springframework.web.bind.annotation.DeleteMapping;
  7. import org.springframework.web.bind.annotation.GetMapping;
  8. import org.springframework.web.bind.annotation.PathVariable;
  9. import org.springframework.web.bind.annotation.PostMapping;
  10. import org.springframework.web.bind.annotation.PutMapping;
  11. import org.springframework.web.bind.annotation.RequestBody;
  12. import org.springframework.web.bind.annotation.RequestMapping;
  13. import org.springframework.web.bind.annotation.RestController;
  14. import com.enteprise.common.core.controller.BaseController;
  15. import com.enteprise.common.core.domain.R;
  16. import com.enteprise.common.utils.StringUtils;
  17. import io.swagger.annotations.Api;
  18. import io.swagger.annotations.ApiImplicitParam;
  19. import io.swagger.annotations.ApiImplicitParams;
  20. import io.swagger.annotations.ApiModel;
  21. import io.swagger.annotations.ApiModelProperty;
  22. import io.swagger.annotations.ApiOperation;
  23. /**
  24. * swagger 用户测试方法
  25. *
  26. * @author ruoyi
  27. */
  28. @Api("用户信息管理")
  29. @RestController
  30. @RequestMapping("/test/user")
  31. public class TestController extends BaseController
  32. {
  33. private final static Map<Integer, UserEntity> users = new LinkedHashMap<Integer, UserEntity>();
  34. {
  35. users.put(1, new UserEntity(1, "admin", "admin123", "15888888888"));
  36. users.put(2, new UserEntity(2, "ry", "admin123", "15666666666"));
  37. }
  38. @ApiOperation("获取用户列表")
  39. @GetMapping("/list")
  40. public R<List<UserEntity>> userList()
  41. {
  42. List<UserEntity> userList = new ArrayList<UserEntity>(users.values());
  43. return R.ok(userList);
  44. }
  45. @ApiOperation("获取用户详细")
  46. @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path", dataTypeClass = Integer.class)
  47. @GetMapping("/{userId}")
  48. public R<UserEntity> getUser(@PathVariable Integer userId)
  49. {
  50. if (!users.isEmpty() && users.containsKey(userId))
  51. {
  52. return R.ok(users.get(userId));
  53. }
  54. else
  55. {
  56. return R.fail("用户不存在");
  57. }
  58. }
  59. @ApiOperation("新增用户")
  60. @ApiImplicitParams({
  61. @ApiImplicitParam(name = "userId", value = "用户id", dataType = "Integer", dataTypeClass = Integer.class),
  62. @ApiImplicitParam(name = "username", value = "用户名称", dataType = "String", dataTypeClass = String.class),
  63. @ApiImplicitParam(name = "password", value = "用户密码", dataType = "String", dataTypeClass = String.class),
  64. @ApiImplicitParam(name = "mobile", value = "用户手机", dataType = "String", dataTypeClass = String.class)
  65. })
  66. @PostMapping("/save")
  67. public R<String> save(UserEntity user)
  68. {
  69. if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId()))
  70. {
  71. return R.fail("用户ID不能为空");
  72. }
  73. users.put(user.getUserId(), user);
  74. return R.ok();
  75. }
  76. @ApiOperation("更新用户")
  77. @PutMapping("/update")
  78. public R<String> update(@RequestBody UserEntity user)
  79. {
  80. if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId()))
  81. {
  82. return R.fail("用户ID不能为空");
  83. }
  84. if (users.isEmpty() || !users.containsKey(user.getUserId()))
  85. {
  86. return R.fail("用户不存在");
  87. }
  88. users.remove(user.getUserId());
  89. users.put(user.getUserId(), user);
  90. return R.ok();
  91. }
  92. @ApiOperation("删除用户信息")
  93. @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path", dataTypeClass = Integer.class)
  94. @DeleteMapping("/{userId}")
  95. public R<String> delete(@PathVariable Integer userId)
  96. {
  97. if (!users.isEmpty() && users.containsKey(userId))
  98. {
  99. users.remove(userId);
  100. return R.ok();
  101. }
  102. else
  103. {
  104. return R.fail("用户不存在");
  105. }
  106. }
  107. }
  108. @ApiModel(value = "UserEntity", description = "用户实体")
  109. class UserEntity
  110. {
  111. @ApiModelProperty("用户ID")
  112. private Integer userId;
  113. @ApiModelProperty("用户名称")
  114. private String username;
  115. @ApiModelProperty("用户密码")
  116. private String password;
  117. @ApiModelProperty("用户手机")
  118. private String mobile;
  119. public UserEntity()
  120. {
  121. }
  122. public UserEntity(Integer userId, String username, String password, String mobile)
  123. {
  124. this.userId = userId;
  125. this.username = username;
  126. this.password = password;
  127. this.mobile = mobile;
  128. }
  129. public Integer getUserId()
  130. {
  131. return userId;
  132. }
  133. public void setUserId(Integer userId)
  134. {
  135. this.userId = userId;
  136. }
  137. public String getUsername()
  138. {
  139. return username;
  140. }
  141. public void setUsername(String username)
  142. {
  143. this.username = username;
  144. }
  145. public String getPassword()
  146. {
  147. return password;
  148. }
  149. public void setPassword(String password)
  150. {
  151. this.password = password;
  152. }
  153. public String getMobile()
  154. {
  155. return mobile;
  156. }
  157. public void setMobile(String mobile)
  158. {
  159. this.mobile = mobile;
  160. }
  161. }