| | |
| | | import com.hrt.common.security.utils.SecurityUtils; |
| | | import com.hrt.system.domain.dto.*; |
| | | import com.hrt.system.domain.poji.member.Member; |
| | | import com.hrt.system.domain.poji.sys.QuickEntry; |
| | | import com.hrt.system.domain.vo.*; |
| | | import com.hrt.system.service.goods.GoodsService; |
| | | import com.hrt.system.service.member.MemberService; |
| | |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.Calendar; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @RequestMapping(value = "/getShopInfo", method = RequestMethod.POST) |
| | | @ApiOperation(value = "获取商户详情") |
| | | public R<AppShopInfoVo> getShopInfo(@RequestBody AppBaseGetDto appBaseGetDto) { |
| | | AppShopInfoVo appShopInfoVo = shopService.getShopInfo(Long.valueOf(appBaseGetDto.getId())); |
| | | AppShopInfoVo appShopInfoVo = shopService.getAppShopInfo(Long.valueOf(appBaseGetDto.getId())); |
| | | return R.ok(appShopInfoVo); |
| | | } |
| | | |