发起债权转让
parent
d678e74e4c
commit
0a99d3878f
@ -0,0 +1,26 @@
|
|||||||
|
package com.sztzjy.block_finance.controller;
|
||||||
|
|
||||||
|
import com.sztzjy.block_finance.annotation.AnonymousAccess;
|
||||||
|
import com.sztzjy.block_finance.util.ResultEntity;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author tz
|
||||||
|
* @date 2024/3/7 10:56
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("api/stu/supplyChainFinance/debtTransfer")
|
||||||
|
@Api(tags = "供应链金融流程:发起债权转让贴现--智能合约执行")
|
||||||
|
public class StuDebtTransferStartController {
|
||||||
|
|
||||||
|
@PostMapping("/getStuHashNavigation")
|
||||||
|
@AnonymousAccess
|
||||||
|
@ApiOperation("债权转让文件展示")
|
||||||
|
public ResultEntity debtTransferFileDisplay(){
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue