实现用印确认

This commit is contained in:
qitz
2024-01-16 16:08:26 +08:00
parent 08296f00f8
commit 0e352e87ac
5 changed files with 57 additions and 3 deletions
@@ -5,9 +5,11 @@ import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.exception.EsignDemoException;
import com.ruoyi.wisdomarbitrate.domain.dto.mscase.MsSignSealDTO;
import com.ruoyi.wisdomarbitrate.domain.dto.mscase.SealSignRecord;
import com.ruoyi.wisdomarbitrate.domain.vo.mscase.MsCaseApplicationVO;
import com.ruoyi.wisdomarbitrate.service.mscase.MsSignSealService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -42,6 +44,15 @@ public class MsSignSealController extends BaseController {
return msSignSealService.sealApply(dto);
}
/**
* 查询用印链接
*/
@PostMapping("/selectSealUrl")
public AjaxResult selectSealUrl(@Validated @RequestBody MsSignSealDTO dto) throws EsignDemoException {
SealSignRecord sealUrlRecordselect = msSignSealService.selectSealUrl(dto);
return success(sealUrlRecordselect);
}