|
@@ -1,6 +1,8 @@
|
|
|
package com.ruoyi.system.service.loan.impl;
|
|
|
|
|
|
import java.util.List;
|
|
|
+
|
|
|
+import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
import com.ruoyi.system.domain.loan.ShareholderFj;
|
|
|
import com.ruoyi.system.service.loan.IShareholderFjService;
|
|
@@ -94,4 +96,13 @@ public class ShareholderFjServiceImpl implements IShareholderFjService
|
|
|
{
|
|
|
return shareholderFjMapper.deleteShareholderFjByShareholderFjId(shareholderFjId);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public AjaxResult exportMb(String type) {
|
|
|
+ String path="/profile/mb/";
|
|
|
+ if("1".equals(type)){
|
|
|
+ path = path + "委托担保申请书.doc";
|
|
|
+ }
|
|
|
+ return AjaxResult.success(path);
|
|
|
+ }
|
|
|
}
|