|
@@ -8,6 +8,7 @@ import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.entity.User;
|
|
|
import com.diagbot.facade.UserFacade;
|
|
|
import com.diagbot.vo.UserSaveVO;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
@@ -20,14 +21,14 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
- * @Description: 用户对外接口层
|
|
|
+ * @Description: 用户操作API
|
|
|
* @author: gaodm
|
|
|
* @time: 2018/8/2 13:56
|
|
|
*/
|
|
|
@RestController
|
|
|
+@Api(value="用户操作API", tags={"用户操作API"})
|
|
|
@RequestMapping("/user")
|
|
|
public class UserController {
|
|
|
|