| | |
| | | import cc.mrbird.febs.common.entity.FebsConstant; |
| | | import cc.mrbird.febs.common.utils.FebsUtil; |
| | | import cc.mrbird.febs.dapp.entity.DataDictionaryCustom; |
| | | import cc.mrbird.febs.dapp.entity.IgtOnHookPlanOrder; |
| | | import cc.mrbird.febs.dapp.entity.MallNewsInfo; |
| | | import cc.mrbird.febs.dapp.enumerate.DataDictionaryEnum; |
| | | import cc.mrbird.febs.dapp.mapper.DataDictionaryCustomMapper; |
| | | import cc.mrbird.febs.dapp.mapper.IgtOnHookPlanOrderDao; |
| | | import cc.mrbird.febs.dapp.service.AdminOnHookPlanService; |
| | | import cc.mrbird.febs.dapp.vo.AdminPlanSetVo; |
| | | import cc.mrbird.febs.dapp.vo.AdminTransferInsideSetVo; |
| | |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.ui.Model; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | |
| | | @Controller("onHookView") |
| | |
| | | public class ViewOnHookPlanController { |
| | | |
| | | private final AdminOnHookPlanService adminOnHookPlanService; |
| | | private final IgtOnHookPlanOrderDao igtOnHookPlanOrderDao; |
| | | private final DataDictionaryCustomMapper dataDictionaryCustomMapper; |
| | | |
| | | public static long idOrderFlow; |
| | | |
| | | /** |
| | | * 挂机-列表 |
| | |
| | | return FebsUtil.view("onhookplan/planSet"); |
| | | } |
| | | |
| | | /** |
| | | * 资金流水详情 |
| | | * @param id |
| | | * @param model |
| | | * @return |
| | | */ |
| | | @GetMapping("/amountFlow/{id}") |
| | | @RequiresPermissions("amountFlow:update") |
| | | public String amountFlow(@PathVariable long id, Model model) { |
| | | idOrderFlow = id; |
| | | IgtOnHookPlanOrder data = igtOnHookPlanOrderDao.selectById(id); |
| | | model.addAttribute("igtOrder", data); |
| | | return FebsUtil.view("onhookplan/amountFlow"); |
| | | } |
| | | |
| | | |
| | | } |