| | |
| | | import com.xcong.excoin.common.entity.FebsConstant; |
| | | import com.xcong.excoin.common.utils.FebsUtil; |
| | | import com.xcong.excoin.modules.member.vo.MemberAuthenticationVo; |
| | | import com.xcong.excoin.modules.otc.entity.OtcMarketBussinessEntity; |
| | | import com.xcong.excoin.modules.otc.entity.OtcOrderEntity; |
| | | import com.xcong.excoin.modules.otc.service.OtcService; |
| | | import com.xcong.excoin.modules.otc.vo.OtcAppealInfoVo; |
| | |
| | | return FebsUtil.view("modules/otc/otcAppealInfo"); |
| | | } |
| | | |
| | | /** |
| | | * 商户回款 |
| | | */ |
| | | @GetMapping("otcHuiKuan/{id}") |
| | | @RequiresPermissions("otcHuiKuan:update") |
| | | public String otcHuiKuan(@PathVariable long id, Model model) { |
| | | OtcMarketBussinessEntity data = otcService.otcHuiKuan(id); |
| | | model.addAttribute("member", data); |
| | | return FebsUtil.view("modules/otc/otcHuiKuan"); |
| | | } |
| | | |
| | | } |