|  |  |  | 
|---|
|  |  |  | 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.OtcOrderEntity; | 
|---|
|  |  |  | import com.xcong.excoin.modules.otc.service.OtcService; | 
|---|
|  |  |  | import com.xcong.excoin.modules.otc.vo.OtcAppealInfoVo; | 
|---|
|  |  |  | import lombok.RequiredArgsConstructor; | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获取订单列表--详情 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @GetMapping("otcOrderInfo/{id}") | 
|---|
|  |  |  | @RequiresPermissions("otcOrderInfo:update") | 
|---|
|  |  |  | public String otcOrderInfo(@PathVariable long id, Model model) { | 
|---|
|  |  |  | OtcOrderEntity data = otcService.otcOrderInfo(id); | 
|---|
|  |  |  | model.addAttribute("member", data); | 
|---|
|  |  |  | return FebsUtil.view("modules/otc/otcOrderInfo"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获取申诉列表 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @GetMapping("otcAppealList") | 
|---|