| | |
| | | import com.xcong.excoin.common.utils.FebsUtil; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | | 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; |
| | | |
| | | /** |
| | |
| | | public String returnMoney() { |
| | | return FebsUtil.view("modules/contract/return-list"); |
| | | } |
| | | |
| | | @GetMapping("getHistoryDocumentaryList") |
| | | @RequiresPermissions("getHistoryDocumentaryList:view") |
| | | public String getHistoryDocumentaryList() { |
| | | return FebsUtil.view("modules/documentary/documentaryContract"); |
| | | } |
| | | /** |
| | | *交易员利润分成---详情 |
| | | */ |
| | | public static long idFromMember; |
| | | @GetMapping("seeFollowerInfo/{id}") |
| | | public String seeFollowerInfo(@PathVariable long id, Model model) { |
| | | idFromMember = id; |
| | | return FebsUtil.view("modules/documentary/seeFollowerInfo"); |
| | | } |
| | | } |