| | |
| | | package com.doumee.api.web; |
| | | |
| | | import com.doumee.core.annotation.LoginRequired; |
| | | import com.doumee.core.annotation.pr.PreventRepeat; |
| | | import com.doumee.core.annotation.trace.Trace; |
| | | import com.doumee.core.model.ApiResponse; |
| | | import com.doumee.dao.business.web.response.HomeResponse; |
| | |
| | | @Autowired |
| | | private GoodsorderService goodsorderService; |
| | | |
| | | |
| | | @LoginRequired |
| | | @ApiOperation(value = "首页信息", notes = "首页信息") |
| | | @GetMapping("/home") |
| | |
| | | HomeResponse homeResponse = goodsorderService.getHome(getMemberId()); |
| | | return ApiResponse.success("查询成功",homeResponse); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |