Sfoglia il codice sorgente

立案申请组庭功能开发

qitz 2 anni fa
parent
commit
891c67f39f
19 ha cambiato i file con 921 aggiunte e 11 eliminazioni
  1. 42
    0
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/wisdomarbitrate/ArbitratorController.java
  2. 50
    2
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/wisdomarbitrate/CaseApplicationController.java
  3. 37
    0
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/wisdomarbitrate/IdentityAuthenticationController.java
  4. 7
    0
      ruoyi-common/pom.xml
  5. 27
    2
      ruoyi-common/src/main/java/com/ruoyi/common/constant/CaseApplicationConstants.java
  6. 111
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/domain/Arbitrator.java
  7. 185
    4
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/domain/CaseApplication.java
  8. 63
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/domain/IdentityAuthentication.java
  9. 10
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/mapper/ArbitratorMapper.java
  10. 4
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/mapper/IdentityAuthenticationMapper.java
  11. 12
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/IArbitratorService.java
  12. 6
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/ICaseApplicationService.java
  13. 9
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/IdentityAuthenticationService.java
  14. 28
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/ArbitratorServiceImpl.java
  15. 164
    2
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseApplicationServiceImpl.java
  16. 98
    0
      ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/IdentityAuthenticationServiceImpl.java
  17. 49
    0
      ruoyi-system/src/main/resources/mapper/wisdomarbitrate/ArbitratorMapper.xml
  18. 4
    1
      ruoyi-system/src/main/resources/mapper/wisdomarbitrate/CaseApplicationMapper.xml
  19. 15
    0
      ruoyi-system/src/main/resources/mapper/wisdomarbitrate/IdentityAuthenticationMapper.xml

+ 42
- 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/wisdomarbitrate/ArbitratorController.java Vedi File

@@ -0,0 +1,42 @@
1
+package com.ruoyi.web.controller.wisdomarbitrate;
2
+
3
+import com.ruoyi.common.core.controller.BaseController;
4
+import com.ruoyi.common.core.page.TableDataInfo;
5
+import com.ruoyi.wisdomarbitrate.domain.Arbitrator;
6
+import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
7
+import com.ruoyi.wisdomarbitrate.service.IArbitratorService;
8
+import org.springframework.beans.factory.annotation.Autowired;
9
+import org.springframework.security.access.prepost.PreAuthorize;
10
+import org.springframework.web.bind.annotation.GetMapping;
11
+import org.springframework.web.bind.annotation.RequestMapping;
12
+import org.springframework.web.bind.annotation.RestController;
13
+
14
+import java.util.List;
15
+
16
+@RestController
17
+@RequestMapping("/arbitrator")
18
+public class ArbitratorController   extends BaseController {
19
+    @Autowired
20
+    private IArbitratorService arbitratorService;
21
+
22
+    /**
23
+     * 查询仲裁员信息
24
+     */
25
+    @PreAuthorize("@ss.hasPermi('arbitrator:list')")
26
+    @GetMapping("/list")
27
+    public TableDataInfo list(Arbitrator arbitrator)
28
+    {
29
+        startPage();
30
+        List<Arbitrator> list = arbitratorService.selectArbitratorList(arbitrator);
31
+        return getDataTable(list);
32
+    }
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+}

+ 50
- 2
ruoyi-admin/src/main/java/com/ruoyi/web/controller/wisdomarbitrate/CaseApplicationController.java Vedi File

@@ -15,7 +15,11 @@ import org.springframework.beans.factory.annotation.Autowired;
15 15
 import org.springframework.security.access.prepost.PreAuthorize;
16 16
 import org.springframework.validation.annotation.Validated;
17 17
 import org.springframework.web.bind.annotation.*;
18
+import com.ruoyi.common.utils.poi.ExcelUtil;
19
+import org.springframework.web.multipart.MultipartFile;
18 20
 
21
+import javax.servlet.http.HttpServletResponse;
22
+import java.io.IOException;
19 23
 import java.util.List;
20 24
 
21 25
 import static com.ruoyi.common.core.domain.AjaxResult.error;
@@ -27,12 +31,13 @@ public class CaseApplicationController  extends BaseController {
27 31
     @Autowired
28 32
     private ICaseApplicationService caseApplicationService;
29 33
 
34
+
30 35
     /**
31 36
      * 查询立案数据
32 37
      */
33 38
     @PreAuthorize("@ss.hasPermi('caseApplication:list')")
34
-    @PostMapping("/list")
35
-    public TableDataInfo list(@Validated @RequestBody CaseApplication caseApplication)
39
+    @GetMapping("/list")
40
+    public TableDataInfo list(CaseApplication caseApplication)
36 41
     {
37 42
         startPage();
38 43
         List<CaseApplication> list = caseApplicationService.selectCaseApplicationList(caseApplication);
@@ -102,6 +107,49 @@ public class CaseApplicationController  extends BaseController {
102 107
         return success(caseApplicationselect);
103 108
     }
104 109
 
110
+    /**
111
+     * 立案申请导入模板下载
112
+     */
113
+    @PostMapping("/importTemplate")
114
+    public void importTemplate(HttpServletResponse response)
115
+    {
116
+        ExcelUtil<CaseApplication> util = new ExcelUtil<CaseApplication>(CaseApplication.class);
117
+        util.importTemplateExcel(response, "立案申请数据");
118
+    }
119
+
120
+    @Log(title = "立案信息导入", businessType = BusinessType.IMPORT)
121
+    @PreAuthorize("@ss.hasPermi('caseApplication:import')")
122
+    @PostMapping("/importData")
123
+    public AjaxResult importData(MultipartFile file) throws Exception {
124
+        ExcelUtil<CaseApplication> util = new ExcelUtil<CaseApplication>(CaseApplication.class);
125
+        List<CaseApplication> caseApplicationList = util.importExcel(file.getInputStream());
126
+        String operName = getUsername();
127
+        String message = caseApplicationService.importCaseApplication(caseApplicationList,operName);
128
+        return success(message);
129
+    }
130
+
131
+    /**
132
+     * 组庭
133
+     */
134
+    @PreAuthorize("@ss.hasPermi('caseApplication:pendTral')")
135
+    @Log(title = "组庭", businessType = BusinessType.UPDATE)
136
+    @PostMapping("/pendTral")
137
+    public AjaxResult pendTral(@Validated @RequestBody CaseApplication caseApplication)
138
+    {
139
+        return toAjax(caseApplicationService.pendTral(caseApplication));
140
+    }
141
+
142
+    /**
143
+     * 是否指派仲裁员
144
+     */
145
+    @PreAuthorize("@ss.hasPermi('caseApplication:pendingAppointArbotrar')")
146
+    @Log(title = "是否指派仲裁员", businessType = BusinessType.UPDATE)
147
+    @PostMapping("/pendingAppointArbotrar")
148
+    public AjaxResult pendingAppointArbotrar(@Validated @RequestBody CaseApplication caseApplication)
149
+    {
150
+        return toAjax(caseApplicationService.pendingAppointArbotrar(caseApplication));
151
+    }
152
+
105 153
 
106 154
 
107 155
 

+ 37
- 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/wisdomarbitrate/IdentityAuthenticationController.java Vedi File

@@ -0,0 +1,37 @@
1
+package com.ruoyi.web.controller.wisdomarbitrate;
2
+
3
+import com.ruoyi.common.core.controller.BaseController;
4
+import com.ruoyi.common.core.domain.AjaxResult;
5
+import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
6
+import com.ruoyi.wisdomarbitrate.domain.IdentityAuthentication;
7
+import com.ruoyi.wisdomarbitrate.service.IdentityAuthenticationService;
8
+import org.springframework.beans.factory.annotation.Autowired;
9
+import org.springframework.validation.annotation.Validated;
10
+import org.springframework.web.bind.annotation.PostMapping;
11
+import org.springframework.web.bind.annotation.RequestBody;
12
+import org.springframework.web.bind.annotation.RequestMapping;
13
+import org.springframework.web.bind.annotation.RestController;
14
+
15
+@RestController
16
+@RequestMapping("/identityAuthentication")
17
+public class IdentityAuthenticationController   extends BaseController {
18
+    @Autowired
19
+    private IdentityAuthenticationService identityAuthenticationService;
20
+
21
+    /**
22
+     * 查询身份证信息
23
+     */
24
+    @PostMapping("/selectIdentityInformation")
25
+    public AjaxResult selectIdentityInformation()
26
+    {
27
+        IdentityAuthentication identityAuthentication = identityAuthenticationService.selectIdentityInformation();
28
+        return success(identityAuthentication);
29
+    }
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+}

+ 7
- 0
ruoyi-common/pom.xml Vedi File

@@ -126,6 +126,13 @@
126 126
             <artifactId>javax.servlet-api</artifactId>
127 127
         </dependency>
128 128
 
129
+        <dependency>
130
+            <groupId>com.tencentcloudapi</groupId>
131
+            <artifactId>tencentcloud-sdk-java-ocr</artifactId>
132
+            <version>3.1.701</version>
133
+        </dependency>
134
+
135
+
129 136
     </dependencies>
130 137
 
131 138
 </project>

+ 27
- 2
ruoyi-common/src/main/java/com/ruoyi/common/constant/CaseApplicationConstants.java Vedi File

@@ -10,10 +10,35 @@ public class CaseApplicationConstants {
10 10
     public static final int PENDING_PAYMENT = 1;
11 11
     /** 待缴费确认  */
12 12
     public static final int PENDING_PAYMENT_CONFIRM = 2;
13
+    /** 待确认是否应诉 */
14
+    public static final int CONFIRMDED_RESPOND = 3;
13 15
     /** 待确认证据  */
14
-    public static final int EVIDENCE_CONFREMED = 3;
16
+    public static final int CONFIRMDED_EVIDENCE = 4;
17
+    /** 待确定是否指派仲裁员  */
18
+    public static final int PENDING_APPOINT_ARBOTRATAR = 5;
15 19
     /** 待组庭  */
16
-    public static final int PENDING_TRIAL = 4;
20
+    public static final int PENDING_TRIAL = 6;
21
+    /** 待组庭确定   */
22
+    public static final int CONFIRMDED_PENDING_TRIAL = 7;
23
+    /** 待组庭审核  */
24
+    public static final int CONFIRMDED_PENDING_TRIAL_SUBMMIT = 8;
25
+    /** 待选择仲裁方式 */
26
+    public static final int SELECTED_ARBITRATION_METHOD = 9;
27
+    /** 待开庭 */
28
+    public static final int PENDING_OPENCOURT = 10;
29
+    /** 待生成仲裁文书  */
30
+    public static final int GENERATED_ARBITRATION = 11;
31
+    /** 待确认仲裁文书  */
32
+    public static final int CONFIRMED_ARBITRATION = 12;
33
+    /** 待仲裁文书用印 */
34
+    public static final int ARBITRATED_SEAL = 13;
35
+    /** 待仲裁文书用印审核  */
36
+    public static final int ARBITRATED_SEAL_REVIEW = 14;
37
+    /** 待仲裁文书送达 */
38
+    public static final int ARBITRATION_DELIVERY = 15;
39
+    /** 待案件归档*/
40
+    public static final int CASE_FILING = 16;
41
+
17 42
 
18 43
 
19 44
 

+ 111
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/domain/Arbitrator.java Vedi File

@@ -0,0 +1,111 @@
1
+package com.ruoyi.wisdomarbitrate.domain;
2
+
3
+import com.ruoyi.common.core.domain.BaseEntity;
4
+
5
+public class Arbitrator    extends BaseEntity {
6
+    private static final long serialVersionUID = 1L;
7
+
8
+    /** ID */
9
+    private Long id;
10
+    /** 仲裁员姓名 */
11
+    private String arbitratorName;
12
+    /** 职称 */
13
+    private String title;
14
+    /** 职业 */
15
+    private String career;
16
+    /** 专业分类 */
17
+    private String professiClassifi;
18
+    /** 学历 */
19
+    private String education;
20
+    /** 所在地区 */
21
+    private String area;
22
+    /** 联系电话 */
23
+    private String telephone;
24
+
25
+    public String getArbitratorName() {
26
+        return arbitratorName;
27
+    }
28
+
29
+    public void setArbitratorName(String arbitratorName) {
30
+        this.arbitratorName = arbitratorName;
31
+    }
32
+
33
+    /** 当前案件数量 */
34
+    private int currentCaseNum;
35
+    /** 已结案数量 */
36
+    private int closedCaseNum;
37
+
38
+    public Long getId() {
39
+        return id;
40
+    }
41
+
42
+    public void setId(Long id) {
43
+        this.id = id;
44
+    }
45
+
46
+
47
+
48
+    public String getTitle() {
49
+        return title;
50
+    }
51
+
52
+    public void setTitle(String title) {
53
+        this.title = title;
54
+    }
55
+
56
+    public String getCareer() {
57
+        return career;
58
+    }
59
+
60
+    public void setCareer(String career) {
61
+        this.career = career;
62
+    }
63
+
64
+    public String getProfessiClassifi() {
65
+        return professiClassifi;
66
+    }
67
+
68
+    public void setProfessiClassifi(String professiClassifi) {
69
+        this.professiClassifi = professiClassifi;
70
+    }
71
+
72
+    public String getEducation() {
73
+        return education;
74
+    }
75
+
76
+    public void setEducation(String education) {
77
+        this.education = education;
78
+    }
79
+
80
+    public String getArea() {
81
+        return area;
82
+    }
83
+
84
+    public void setArea(String area) {
85
+        this.area = area;
86
+    }
87
+
88
+    public String getTelephone() {
89
+        return telephone;
90
+    }
91
+
92
+    public void setTelephone(String telephone) {
93
+        this.telephone = telephone;
94
+    }
95
+
96
+    public int getCurrentCaseNum() {
97
+        return currentCaseNum;
98
+    }
99
+
100
+    public void setCurrentCaseNum(int currentCaseNum) {
101
+        this.currentCaseNum = currentCaseNum;
102
+    }
103
+
104
+    public int getClosedCaseNum() {
105
+        return closedCaseNum;
106
+    }
107
+
108
+    public void setClosedCaseNum(int closedCaseNum) {
109
+        this.closedCaseNum = closedCaseNum;
110
+    }
111
+}

+ 185
- 4
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/domain/CaseApplication.java Vedi File

@@ -2,6 +2,7 @@ package com.ruoyi.wisdomarbitrate.domain;
2 2
 
3 3
 import com.fasterxml.jackson.annotation.JsonFormat;
4 4
 import com.ruoyi.common.annotation.Excel;
5
+import com.ruoyi.common.annotation.Excels;
5 6
 import com.ruoyi.common.core.domain.BaseEntity;
6 7
 import java.math.BigDecimal;
7 8
 import java.util.Date;
@@ -11,17 +12,15 @@ public class CaseApplication  extends BaseEntity {
11 12
     private static final long serialVersionUID = 1L;
12 13
 
13 14
     /** ID */
14
-    @Excel(name = "ID", cellType = Excel.ColumnType.NUMERIC, prompt = "ID")
15 15
     private Long id;
16 16
     /** 案件编号 */
17 17
     @Excel(name = "案件编号")
18 18
     private String caseNum;
19
-    /** 合同编号 */
20
-    @Excel(name = "合同编号")
21
-    private String contractNumber;
22 19
     /** 案件标的 */
23 20
     @Excel(name = "案件标的")
24 21
     private BigDecimal caseSubjectAmount;
22
+
23
+
25 24
     /** 立案日期 */
26 25
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
27 26
     private Date registerDate;
@@ -36,10 +35,15 @@ public class CaseApplication  extends BaseEntity {
36 35
     private String arbitratClaims;
37 36
     /** 借款开始日期 */
38 37
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
38
+    @Excel(name = "借款开始日期")
39 39
     private Date loanStartDate;
40 40
     /** 借款结束日期 */
41 41
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
42
+    @Excel(name = "借款结束日期")
42 43
     private Date loanEndDate;
44
+    /** 合同编号 */
45
+    @Excel(name = "合同编号")
46
+    private String contractNumber;
43 47
     /** 申请人主张欠本金 */
44 48
     @Excel(name = "申请人主张欠本金")
45 49
     private BigDecimal claimPrinciOwed;
@@ -59,9 +63,179 @@ public class CaseApplication  extends BaseEntity {
59 63
     /** 在线视频人员 */
60 64
     private String onlineVideoPerson;
61 65
 
66
+    /** 仲裁员id */
67
+    private String arbitratorId;
68
+    /** 仲裁员名称 */
69
+    private String arbitratorName;
70
+
71
+    public String getArbitratorName() {
72
+        return arbitratorName;
73
+    }
74
+
75
+    public void setArbitratorName(String arbitratorName) {
76
+        this.arbitratorName = arbitratorName;
77
+    }
78
+
79
+    /** 是否指派仲裁员 */
80
+    private int pendingAppointArbotrar;
81
+
82
+    public int getPendingAppointArbotrar() {
83
+        return pendingAppointArbotrar;
84
+    }
85
+
86
+    public void setPendingAppointArbotrar(int pendingAppointArbotrar) {
87
+        this.pendingAppointArbotrar = pendingAppointArbotrar;
88
+    }
89
+
90
+    public String getArbitratorId() {
91
+        return arbitratorId;
92
+    }
93
+
94
+    public void setArbitratorId(String arbitratorId) {
95
+        this.arbitratorId = arbitratorId;
96
+    }
97
+
98
+
99
+
62 100
     /** 案件关联人信息 */
63 101
     private List<CaseAffiliate> caseAffiliates;
64 102
 
103
+    /** 案件仲裁员 */
104
+    private List<Arbitrator> arbitrators;
105
+
106
+    public List<Arbitrator> getArbitrators() {
107
+        return arbitrators;
108
+    }
109
+
110
+    public void setArbitrators(List<Arbitrator> arbitrators) {
111
+        this.arbitrators = arbitrators;
112
+    }
113
+
114
+    /** 身份类型 */
115
+    @Excel(name = "身份类型")
116
+    private int identityType;
117
+    /** 姓名 */
118
+    @Excel(name = "姓名")
119
+    private String name;
120
+    /** 身份证号 */
121
+    @Excel(name = "身份证号")
122
+    private String identityNum;
123
+    /** 单位电话 */
124
+    @Excel(name = "单位电话")
125
+    private String workTelphone;
126
+    /** 联系电话 */
127
+    @Excel(name = "联系电话")
128
+    private String contactTelphone;
129
+    /** 联系地址 */
130
+    @Excel(name = "联系地址")
131
+    private String contactAddress;
132
+    /** 单位地址 */
133
+    @Excel(name = "单位地址")
134
+    private String workAddress;
135
+
136
+    /** 代理人姓名 */
137
+    @Excel(name = "代理人姓名")
138
+    private String nameAgent;
139
+    /** 身份证号 */
140
+    @Excel(name = "代理人身份证号")
141
+    private String identityNumAgent;
142
+    /** 联系电话 */
143
+    @Excel(name = "代理人联系电话")
144
+    private String contactTelphoneAgent;
145
+
146
+    public int getIdentityType() {
147
+        return identityType;
148
+    }
149
+
150
+    public void setIdentityType(int identityType) {
151
+        this.identityType = identityType;
152
+    }
153
+
154
+    public String getName() {
155
+        return name;
156
+    }
157
+
158
+    public void setName(String name) {
159
+        this.name = name;
160
+    }
161
+
162
+    public String getIdentityNum() {
163
+        return identityNum;
164
+    }
165
+
166
+    public void setIdentityNum(String identityNum) {
167
+        this.identityNum = identityNum;
168
+    }
169
+
170
+    public String getWorkTelphone() {
171
+        return workTelphone;
172
+    }
173
+
174
+    public void setWorkTelphone(String workTelphone) {
175
+        this.workTelphone = workTelphone;
176
+    }
177
+
178
+    public String getContactTelphone() {
179
+        return contactTelphone;
180
+    }
181
+
182
+    public void setContactTelphone(String contactTelphone) {
183
+        this.contactTelphone = contactTelphone;
184
+    }
185
+
186
+    public String getContactAddress() {
187
+        return contactAddress;
188
+    }
189
+
190
+    public void setContactAddress(String contactAddress) {
191
+        this.contactAddress = contactAddress;
192
+    }
193
+
194
+    public String getWorkAddress() {
195
+        return workAddress;
196
+    }
197
+
198
+    public void setWorkAddress(String workAddress) {
199
+        this.workAddress = workAddress;
200
+    }
201
+
202
+    public String getNameAgent() {
203
+        return nameAgent;
204
+    }
205
+
206
+    public void setNameAgent(String nameAgent) {
207
+        this.nameAgent = nameAgent;
208
+    }
209
+
210
+    public String getIdentityNumAgent() {
211
+        return identityNumAgent;
212
+    }
213
+
214
+    public void setIdentityNumAgent(String identityNumAgent) {
215
+        this.identityNumAgent = identityNumAgent;
216
+    }
217
+
218
+    public String getContactTelphoneAgent() {
219
+        return contactTelphoneAgent;
220
+    }
221
+
222
+    public void setContactTelphoneAgent(String contactTelphoneAgent) {
223
+        this.contactTelphoneAgent = contactTelphoneAgent;
224
+    }
225
+
226
+    public String getContactAddressAgent() {
227
+        return contactAddressAgent;
228
+    }
229
+
230
+    public void setContactAddressAgent(String contactAddressAgent) {
231
+        this.contactAddressAgent = contactAddressAgent;
232
+    }
233
+
234
+    /** 联系地址 */
235
+    @Excel(name = "代理人联系地址")
236
+    private String contactAddressAgent;
237
+
238
+
65 239
 
66 240
 
67 241
     public Long getId() {
@@ -215,4 +389,11 @@ public class CaseApplication  extends BaseEntity {
215 389
     public void setCaseAffiliates(List<CaseAffiliate> caseAffiliates) {
216 390
         this.caseAffiliates = caseAffiliates;
217 391
     }
392
+
393
+
394
+
395
+
396
+
397
+
398
+
218 399
 }

+ 63
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/domain/IdentityAuthentication.java Vedi File

@@ -0,0 +1,63 @@
1
+package com.ruoyi.wisdomarbitrate.domain;
2
+
3
+import com.fasterxml.jackson.annotation.JsonFormat;
4
+import com.ruoyi.common.annotation.Excel;
5
+import com.ruoyi.common.core.domain.BaseEntity;
6
+
7
+import java.util.Date;
8
+
9
+public class IdentityAuthentication   extends BaseEntity {
10
+    private static final long serialVersionUID = 1L;
11
+
12
+    /** ID */
13
+    private Long id;
14
+    /** 姓名 */
15
+    private String name;
16
+    /** 身份证号 */
17
+    private String identityNo;
18
+    /** 认证时间 */
19
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
20
+    private Date certificationTime;
21
+    /** 认证状态 */
22
+    private int certificationStatus;
23
+
24
+    public Long getId() {
25
+        return id;
26
+    }
27
+
28
+    public void setId(Long id) {
29
+        this.id = id;
30
+    }
31
+
32
+    public String getName() {
33
+        return name;
34
+    }
35
+
36
+    public void setName(String name) {
37
+        this.name = name;
38
+    }
39
+
40
+    public String getIdentityNo() {
41
+        return identityNo;
42
+    }
43
+
44
+    public void setIdentityNo(String identityNo) {
45
+        this.identityNo = identityNo;
46
+    }
47
+
48
+    public Date getCertificationTime() {
49
+        return certificationTime;
50
+    }
51
+
52
+    public void setCertificationTime(Date certificationTime) {
53
+        this.certificationTime = certificationTime;
54
+    }
55
+
56
+    public int getCertificationStatus() {
57
+        return certificationStatus;
58
+    }
59
+
60
+    public void setCertificationStatus(int certificationStatus) {
61
+        this.certificationStatus = certificationStatus;
62
+    }
63
+}

+ 10
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/mapper/ArbitratorMapper.java Vedi File

@@ -0,0 +1,10 @@
1
+package com.ruoyi.wisdomarbitrate.mapper;
2
+
3
+import com.ruoyi.wisdomarbitrate.domain.Arbitrator;
4
+
5
+import java.util.List;
6
+
7
+public interface ArbitratorMapper {
8
+    List<Arbitrator> selectArbitratorList(Arbitrator arbitrator);
9
+
10
+}

+ 4
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/mapper/IdentityAuthenticationMapper.java Vedi File

@@ -0,0 +1,4 @@
1
+package com.ruoyi.wisdomarbitrate.mapper;
2
+
3
+public interface IdentityAuthenticationMapper {
4
+}

+ 12
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/IArbitratorService.java Vedi File

@@ -0,0 +1,12 @@
1
+package com.ruoyi.wisdomarbitrate.service;
2
+
3
+import com.ruoyi.wisdomarbitrate.domain.Arbitrator;
4
+
5
+import java.util.List;
6
+
7
+public interface IArbitratorService {
8
+    List<Arbitrator> selectArbitratorList(Arbitrator arbitrator);
9
+
10
+
11
+
12
+}

+ 6
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/ICaseApplicationService.java Vedi File

@@ -19,4 +19,10 @@ public interface ICaseApplicationService {
19 19
     int deletecaseApplicationByIds(CaseApplication caseApplication);
20 20
 
21 21
     CaseApplication selectCaseApplication(CaseApplication caseApplication);
22
+
23
+    String importCaseApplication(List<CaseApplication> caseApplicationList, String operName);
24
+
25
+    int pendTral(CaseApplication caseApplication);
26
+
27
+    int pendingAppointArbotrar(CaseApplication caseApplication);
22 28
 }

+ 9
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/IdentityAuthenticationService.java Vedi File

@@ -0,0 +1,9 @@
1
+package com.ruoyi.wisdomarbitrate.service;
2
+
3
+import com.ruoyi.wisdomarbitrate.domain.IdentityAuthentication;
4
+
5
+public interface IdentityAuthenticationService {
6
+
7
+
8
+    IdentityAuthentication selectIdentityInformation();
9
+}

+ 28
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/ArbitratorServiceImpl.java Vedi File

@@ -0,0 +1,28 @@
1
+package com.ruoyi.wisdomarbitrate.service.impl;
2
+
3
+import com.ruoyi.wisdomarbitrate.domain.Arbitrator;
4
+import com.ruoyi.wisdomarbitrate.mapper.ArbitratorMapper;
5
+import com.ruoyi.wisdomarbitrate.service.IArbitratorService;
6
+import org.springframework.beans.factory.annotation.Autowired;
7
+import org.springframework.stereotype.Service;
8
+
9
+import java.util.List;
10
+
11
+@Service
12
+public class ArbitratorServiceImpl implements IArbitratorService {
13
+    @Autowired
14
+    private ArbitratorMapper arbitratorMapper;
15
+
16
+
17
+    @Override
18
+    public List<Arbitrator> selectArbitratorList(Arbitrator arbitrator) {
19
+        return arbitratorMapper.selectArbitratorList(arbitrator);
20
+
21
+    }
22
+
23
+
24
+
25
+
26
+
27
+
28
+}

+ 164
- 2
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseApplicationServiceImpl.java Vedi File

@@ -1,6 +1,10 @@
1 1
 package com.ruoyi.wisdomarbitrate.service.impl;
2 2
 
3 3
 import com.ruoyi.common.constant.CaseApplicationConstants;
4
+import com.ruoyi.common.exception.ServiceException;
5
+import com.ruoyi.common.utils.StringUtils;
6
+import com.ruoyi.common.utils.bean.BeanUtils;
7
+import com.ruoyi.wisdomarbitrate.domain.Arbitrator;
4 8
 import com.ruoyi.wisdomarbitrate.domain.CaseAffiliate;
5 9
 import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
6 10
 import com.ruoyi.wisdomarbitrate.mapper.CaseAffiliateMapper;
@@ -11,9 +15,15 @@ import org.springframework.stereotype.Service;
11 15
 import org.springframework.transaction.annotation.Transactional;
12 16
 
13 17
 import java.lang.reflect.Field;
18
+import java.util.ArrayList;
19
+import java.util.Comparator;
14 20
 import java.util.List;
21
+import java.util.TreeSet;
22
+import java.util.stream.Collectors;
15 23
 
16 24
 import static com.ruoyi.common.core.domain.AjaxResult.error;
25
+import static java.util.stream.Collectors.collectingAndThen;
26
+import static java.util.stream.Collectors.toCollection;
17 27
 
18 28
 @Service
19 29
 public class CaseApplicationServiceImpl implements ICaseApplicationService {
@@ -89,10 +99,162 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
89 99
         CaseAffiliate caseAffiliate = new CaseAffiliate();
90 100
         caseAffiliate.setCaseAppliId(caseApplication.getId());
91 101
         List<CaseAffiliate> caseAffiliatListeselect = caseAffiliateMapper.selectCaseAffiliate(caseAffiliate);
92
-        caseApplicationselect.setCaseAffiliates(caseAffiliatListeselect);
93
-
102
+        if(caseApplicationselect!=null){
103
+            caseApplicationselect.setCaseAffiliates(caseAffiliatListeselect);
104
+        }
94 105
         return caseApplicationselect;
95 106
     }
96 107
 
108
+    @Override
109
+    @Transactional
110
+    public String importCaseApplication(List<CaseApplication> caseApplicationList,  String operName) {
111
+        StringBuilder successMsg = new StringBuilder();
112
+        StringBuilder failureMsg = new StringBuilder();
113
+        int successNum = 0;
114
+        int failureNum = 0;
115
+        if(caseApplicationList!=null&&caseApplicationList.size()>0){
116
+            List<CaseApplication> caseApplicationListinsert = new ArrayList<>();
117
+            for (int i = 0; i < caseApplicationList.size(); i++){
118
+                CaseApplication caseApplication = caseApplicationList.get(i);
119
+                //赋值CaseApplication的案件关联人信息
120
+                List<CaseAffiliate> caseAffiliatesnew  = new ArrayList<>();
121
+                assignmentCaseAffiliates(caseApplication,caseAffiliatesnew);
122
+
123
+                int caseApplicationCount = selectCaseApplicationCount(caseApplication);
124
+                if(caseApplicationCount>0){
125
+                    failureNum++;
126
+                    failureMsg.append("<br/>" + failureNum + "、立案编号 " + caseApplication.getCaseNum() + " 已存在");
127
+                }else {
128
+                    caseApplicationListinsert.add(caseApplication);
129
+                }
130
+            }
131
+            if(caseApplicationListinsert!=null&&caseApplicationListinsert.size()>0){
132
+                List<CaseApplication> caseApplicationListinsertDiffer = caseApplicationListinsert.stream().collect(
133
+                        collectingAndThen(
134
+                                toCollection(() -> new TreeSet<>(Comparator.comparing(CaseApplication::getCaseNum))),
135
+                                ArrayList::new));
136
+
137
+
138
+                //对不重复的立案对象集合的立案对象重新组装对应的案件关联人信息
139
+                if(caseApplicationListinsertDiffer!=null&&caseApplicationListinsertDiffer.size()>0){
140
+                    List<CaseApplication> caseApplicationNewList = new ArrayList<>();
141
+                    for (int i = 0; i < caseApplicationListinsertDiffer.size(); i++){
142
+                        CaseApplication caseApplicationinsertDiffer = caseApplicationListinsertDiffer.get(i);
143
+                        List<CaseAffiliate> caseAffiliatesnew =  new ArrayList<>();
144
+                        CaseApplication caseApplicationNew = new CaseApplication();
145
+                        copyCaseApplication(caseApplicationinsertDiffer,caseApplicationNew);
146
+                        if(caseApplicationListinsert!=null&&caseApplicationListinsert.size()>0){
147
+                            for (int j = 0; j < caseApplicationListinsert.size(); j++){
148
+                                CaseApplication  caseApplicationinsert = caseApplicationListinsert.get(j);
149
+
150
+                                if(StringUtils.isNotEmpty(caseApplicationinsert.getCaseNum())&&
151
+                                        caseApplicationinsert.getCaseNum().equals(caseApplicationinsertDiffer.getCaseNum())){
152
+
153
+                                    caseAffiliatesnew.addAll(caseApplicationinsert.getCaseAffiliates());
154
+                                }
155
+                            }
156
+                            caseApplicationNew.setCaseAffiliates(caseAffiliatesnew);
157
+                            caseApplicationNewList.add(caseApplicationNew);
158
+                        }
159
+
160
+                        for (int k = 0; k < caseApplicationNewList.size(); k++){
161
+                            CaseApplication caseApplicationItera = caseApplicationNewList.get(k);
162
+                            // 新增立案信息
163
+                            caseApplicationItera.setCaseStatus(CaseApplicationConstants.CASE_APPLICATION);
164
+                            int rows = caseApplicationMapper.insertCaseApplication(caseApplicationItera);
165
+                            List<CaseAffiliate> caseAffiliates = caseApplicationItera.getCaseAffiliates();
166
+                            if(caseAffiliates!=null&&caseAffiliates.size()>0){
167
+                                for (CaseAffiliate caseAffiliate : caseAffiliates){
168
+                                    caseAffiliate.setCaseAppliId(caseApplicationItera.getId());
169
+                                }
170
+                                caseAffiliateMapper.batchCaseAffiliate(caseAffiliates);
171
+                            }
172
+                            successNum++;
173
+                            successMsg.append("<br/>" + successNum + "、立案编号 " + caseApplicationItera.getCaseNum() + " 导入成功");
174
+                        }
175
+
176
+                    }
177
+
178
+                }
179
+
180
+            }
181
+
182
+        }else {
183
+            throw new ServiceException("导入立案申请数据不能为空!");
184
+        }
185
+
186
+        return  successMsg.toString();
187
+    }
188
+
189
+    @Override
190
+    @Transactional
191
+    public int pendTral(CaseApplication caseApplication) {
192
+        List<Arbitrator> arbitrators = caseApplication.getArbitrators();
193
+        int rows = 0;
194
+        if(arbitrators!=null&&arbitrators.size()>0){
195
+            List<Long> ids = arbitrators.stream().map(Arbitrator::getId).collect(Collectors.toList());
196
+            List<String> arbitratorNames = arbitrators.stream().map(Arbitrator::getArbitratorName).collect(Collectors.toList());
197
+            String idstr = ids.stream().map(Object::toString).collect(Collectors.joining(","));
198
+            String arbitratorNamestr = arbitratorNames.stream().map(Object::toString).collect(Collectors.joining(","));
199
+            caseApplication.setArbitratorId(idstr);
200
+            caseApplication.setArbitratorName(arbitratorNamestr);
201
+            caseApplication.setCaseStatus(CaseApplicationConstants.CONFIRMDED_PENDING_TRIAL);
202
+            rows = caseApplicationMapper.submitCaseApplication(caseApplication);
203
+        }
204
+
205
+
206
+        return rows;
207
+    }
208
+
209
+    @Override
210
+    @Transactional
211
+    public int pendingAppointArbotrar(CaseApplication caseApplication) {
212
+        int pendingAppointArbotrar = caseApplication.getPendingAppointArbotrar();
213
+        List<Arbitrator> arbitrators = caseApplication.getArbitrators();
214
+        int rows = 0;
215
+        if(pendingAppointArbotrar==1){
216
+            if(arbitrators!=null&&arbitrators.size()>0){
217
+                List<Long> ids = arbitrators.stream().map(Arbitrator::getId).collect(Collectors.toList());
218
+                List<String> arbitratorNames = arbitrators.stream().map(Arbitrator::getArbitratorName).collect(Collectors.toList());
219
+                String idstr = ids.stream().map(Object::toString).collect(Collectors.joining(","));
220
+                String arbitratorNamestr = arbitratorNames.stream().map(Object::toString).collect(Collectors.joining(","));
221
+                caseApplication.setArbitratorId(idstr);
222
+                caseApplication.setArbitratorName(arbitratorNamestr);
223
+                caseApplication.setCaseStatus(CaseApplicationConstants.CONFIRMDED_PENDING_TRIAL);
224
+                caseApplication.setPendingAppointArbotrar(1);
225
+                rows = caseApplicationMapper.submitCaseApplication(caseApplication);
226
+            }
227
+
228
+        }else {
229
+            caseApplication.setCaseStatus(CaseApplicationConstants.PENDING_TRIAL);
230
+            caseApplication.setPendingAppointArbotrar(2);
231
+            rows = caseApplicationMapper.submitCaseApplication(caseApplication);
232
+
233
+        }
234
+
235
+        return rows;
236
+
237
+    }
238
+
239
+    private void assignmentCaseAffiliates(CaseApplication caseApplication, List<CaseAffiliate> caseAffiliatesnew) {
240
+        CaseAffiliate caseAffiliate = new CaseAffiliate();
241
+//        BeanUtils.copyBeanProp(caseApplication,caseAffiliate);
242
+        BeanUtils.copyBeanProp(caseAffiliate,caseApplication);
243
+        caseAffiliatesnew.add(caseAffiliate);
244
+        caseApplication.setCaseAffiliates(caseAffiliatesnew);
245
+    }
246
+
247
+    private void copyCaseApplication(CaseApplication caseApplicationinsertDiffer, CaseApplication caseApplicationNew) {
248
+        caseApplicationNew.setArbitratClaims(caseApplicationinsertDiffer.getArbitratClaims());
249
+        caseApplicationNew.setCaseNum(caseApplicationinsertDiffer.getCaseNum());
250
+        caseApplicationNew.setCaseSubjectAmount(caseApplicationinsertDiffer.getCaseSubjectAmount());
251
+        caseApplicationNew.setLoanStartDate(caseApplicationinsertDiffer.getLoanStartDate());
252
+        caseApplicationNew.setLoanEndDate(caseApplicationinsertDiffer.getLoanEndDate());
253
+        caseApplicationNew.setContractNumber(caseApplicationinsertDiffer.getContractNumber());
254
+        caseApplicationNew.setClaimInterestOwed(caseApplicationinsertDiffer.getClaimInterestOwed());
255
+        caseApplicationNew.setClaimPrinciOwed(caseApplicationinsertDiffer.getClaimPrinciOwed());
256
+        caseApplicationNew.setClaimLiquidDamag(caseApplicationinsertDiffer.getClaimLiquidDamag());
257
+    }
258
+
97 259
 
98 260
 }

+ 98
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/IdentityAuthenticationServiceImpl.java Vedi File

@@ -0,0 +1,98 @@
1
+package com.ruoyi.wisdomarbitrate.service.impl;
2
+
3
+import com.alibaba.fastjson2.JSON;
4
+import com.alibaba.fastjson2.JSONObject;
5
+import com.ruoyi.common.core.domain.AjaxResult;
6
+import com.ruoyi.wisdomarbitrate.domain.IdentityAuthentication;
7
+import com.ruoyi.wisdomarbitrate.mapper.IdentityAuthenticationMapper;
8
+import com.ruoyi.wisdomarbitrate.service.ICaseApplicationService;
9
+import com.ruoyi.wisdomarbitrate.service.IdentityAuthenticationService;
10
+import com.tencentcloudapi.common.Credential;
11
+import com.tencentcloudapi.common.exception.TencentCloudSDKException;
12
+import com.tencentcloudapi.common.profile.ClientProfile;
13
+import com.tencentcloudapi.common.profile.HttpProfile;
14
+import com.tencentcloudapi.ocr.v20181119.OcrClient;
15
+import com.tencentcloudapi.ocr.v20181119.models.RecognizeTableAccurateOCRRequest;
16
+import com.tencentcloudapi.ocr.v20181119.models.RecognizeTableAccurateOCRResponse;
17
+import org.slf4j.Logger;
18
+import org.slf4j.LoggerFactory;
19
+import org.springframework.beans.factory.annotation.Autowired;
20
+import org.springframework.beans.factory.annotation.Value;
21
+import org.springframework.stereotype.Service;
22
+
23
+import java.io.FileInputStream;
24
+import java.io.IOException;
25
+import java.io.InputStream;
26
+import java.util.Base64;
27
+
28
+@Service
29
+public class IdentityAuthenticationServiceImpl  implements IdentityAuthenticationService {
30
+
31
+    @Value("${identityAuthentication.credentialSecretId}")
32
+    private String credentialSecretId;
33
+    @Value("${identityAuthentication.credentialSecretKey}")
34
+    private String credentialSecretKey;
35
+
36
+    @Autowired
37
+    private IdentityAuthenticationMapper identityAuthenticationMapper;
38
+
39
+    private static final Logger log = LoggerFactory.getLogger(IdentityAuthenticationServiceImpl.class);
40
+
41
+    @Override
42
+    public IdentityAuthentication selectIdentityInformation() {
43
+        IdentityAuthentication identityAuthentication = new IdentityAuthentication();
44
+        try{
45
+            Credential credIdentityAuthentication = new Credential(credentialSecretId, credentialSecretKey);
46
+            HttpProfile httpProfileIdentityAuthentication = new HttpProfile();
47
+            httpProfileIdentityAuthentication.setEndpoint("ocr.tencentcloudapi.com");
48
+            String imagePathIdentityAuthentication = "本地png/jpg文件的绝对地址";
49
+            InputStream inputStreamIdentityAuthentication = null;
50
+            byte[] buffer = null;
51
+            //读取图片字节数组
52
+            try {
53
+                inputStreamIdentityAuthentication = new FileInputStream(imagePathIdentityAuthentication);
54
+                int count = 0;
55
+                while (count == 0) {
56
+                    count = inputStreamIdentityAuthentication.available();
57
+                }
58
+                buffer = new byte[count];
59
+                inputStreamIdentityAuthentication.read(buffer);
60
+            } catch (IOException e) {
61
+                e.printStackTrace();
62
+            } finally {
63
+                if (inputStreamIdentityAuthentication != null) {
64
+                    try {
65
+                        // 关闭inputStream流
66
+                        inputStreamIdentityAuthentication.close();
67
+                    } catch (IOException e) {
68
+                        e.printStackTrace();
69
+                    }
70
+                }
71
+            }
72
+
73
+            String imageBase64IdentityAuthentication = Base64.getEncoder().encodeToString(buffer);
74
+
75
+            ClientProfile clientProfileIdentityAuthentication = new ClientProfile();
76
+            clientProfileIdentityAuthentication.setHttpProfile(httpProfileIdentityAuthentication);
77
+            OcrClient clientIdentityAuthentication = new OcrClient(credIdentityAuthentication, "ap-shanghai", clientProfileIdentityAuthentication);
78
+            RecognizeTableAccurateOCRRequest reqIdentityAuthentication = new RecognizeTableAccurateOCRRequest();
79
+            reqIdentityAuthentication.setImageBase64(imageBase64IdentityAuthentication);
80
+            RecognizeTableAccurateOCRResponse respIdentityAuthentication = clientIdentityAuthentication.RecognizeTableAccurateOCR(reqIdentityAuthentication);
81
+            String stringRes = RecognizeTableAccurateOCRResponse.toJsonString(respIdentityAuthentication);
82
+            JSONObject stringObjectRes = (JSONObject) JSON.parse(stringRes);
83
+            JSONObject stringres = (JSONObject) stringObjectRes.get("Response");
84
+
85
+
86
+            identityAuthentication.setName(stringres.get("name").toString());
87
+            identityAuthentication.setIdentityNo(stringres.get("IdNum").toString());
88
+
89
+//            System.out.println(RecognizeTableAccurateOCRResponse.toJsonString(respIdentityAuthentication);
90
+
91
+        } catch (TencentCloudSDKException e) {
92
+            log.error("身份认证失败", e);
93
+        }
94
+
95
+        return identityAuthentication;
96
+
97
+    }
98
+}

+ 49
- 0
ruoyi-system/src/main/resources/mapper/wisdomarbitrate/ArbitratorMapper.xml Vedi File

@@ -0,0 +1,49 @@
1
+<?xml version="1.0" encoding="UTF-8" ?>
2
+<!DOCTYPE mapper
3
+        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
4
+        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
5
+<mapper namespace="com.ruoyi.wisdomarbitrate.mapper.ArbitratorMapper">
6
+    <resultMap type="Arbitrator" id="ArbitratorResult">
7
+        <id     property="id"       column="id"      />
8
+        <result property="arbitratorName"       column="arbitrator_name"      />
9
+        <result property="title"     column="title"    />
10
+        <result property="career"     column="career"    />
11
+        <result property="professiClassifi"        column="professi_classifi"        />
12
+        <result property="education"  column="education"  />
13
+        <result property="area"          column="area"          />
14
+        <result property="telephone"       column="telephone"       />
15
+        <result property="currentCaseNum"     column="current_case_num"     />
16
+        <result property="closedCaseNum"       column="closed_case_num"       />
17
+
18
+    </resultMap>
19
+
20
+
21
+    <select id="selectArbitratorList" parameterType="Arbitrator" resultMap="ArbitratorResult">
22
+        select a.id ,a.arbitrator_name ,a.title ,a.career ,a.professi_classifi ,
23
+        a.education ,a.area ,a.telephone ,a.current_case_num ,a.closed_case_num
24
+        from arbitrator a
25
+        <where>
26
+            <if test="arbitratorName != null and arbitratorName != ''">
27
+                AND a.arbitrator_name like concat('%', #{arbitratorName}, '%')
28
+            </if>
29
+        </where>
30
+    </select>
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+</mapper>

+ 4
- 1
ruoyi-system/src/main/resources/mapper/wisdomarbitrate/CaseApplicationMapper.xml Vedi File

@@ -135,7 +135,10 @@
135 135
     <update id="submitCaseApplication" parameterType="CaseApplication">
136 136
         update case_application
137 137
         <set>
138
-            <if test="caseStatus != null">case_status = #{caseStatus}</if>
138
+            <if test="caseStatus != null">case_status = #{caseStatus},</if>
139
+            <if test="arbitratorId != null and arbitratorId != ''">arbitrator_id = #{arbitratorId},</if>
140
+            <if test="arbitratorName != null and arbitratorName != ''">arbitrator_name = #{arbitratorName},</if>
141
+            <if test="pendingAppointArbotrar != null ">pending_appoint_arbotrar = #{pendingAppointArbotrar},</if>
139 142
         </set>
140 143
         where id = #{id}
141 144
     </update>

+ 15
- 0
ruoyi-system/src/main/resources/mapper/wisdomarbitrate/IdentityAuthenticationMapper.xml Vedi File

@@ -0,0 +1,15 @@
1
+<?xml version="1.0" encoding="UTF-8" ?>
2
+<!DOCTYPE mapper
3
+        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
4
+        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
5
+<mapper namespace="com.ruoyi.wisdomarbitrate.mapper.IdentityAuthenticationMapper">
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+</mapper>