缴费详情 #99

Merged
wangqiong123 merged 276 commits from dev into master 2023-10-15 15:02:30 +00:00
3 changed files with 2 additions and 4 deletions
Showing only changes of commit 80b4d6c91b - Show all commits
@@ -36,7 +36,6 @@ public class CaseEvidenceController extends BaseController {
* @return * @return
*/ */
@GetMapping("/{id}") @GetMapping("/{id}")
@PreAuthorize("@ss.hasPermi('caseManagement:list:detail')")
public AjaxResult getCaseDetailsById(@PathVariable Long id) { public AjaxResult getCaseDetailsById(@PathVariable Long id) {
String username = this.getUsername(); String username = this.getUsername();
return caseEvidenceService.getCaseDetailsById(id,username); return caseEvidenceService.getCaseDetailsById(id,username);
@@ -63,7 +62,6 @@ public class CaseEvidenceController extends BaseController {
* @return * @return
*/ */
@GetMapping("/all") @GetMapping("/all")
@PreAuthorize("@ss.hasPermi('caseManagement:list')")
public TableDataInfo getCaseListAll(@RequestParam String identityNum) { public TableDataInfo getCaseListAll(@RequestParam String identityNum) {
startPage(); startPage();
List<CaseEvidenceVO> list = caseEvidenceService.getCaseListAll(identityNum); List<CaseEvidenceVO> list = caseEvidenceService.getCaseListAll(identityNum);
@@ -198,7 +198,7 @@ public class IdentityAuthenticationServiceImpl implements IdentityAuthentication
authentication.setIdentityNo(idcardno); authentication.setIdentityNo(idcardno);
authentication.setCertificationTime(new Date()); authentication.setCertificationTime(new Date());
authentication.setCertificationStatus(0); authentication.setCertificationStatus(0);
authentication.setRequestId(objJSON.getString("RequestId")); authentication.setCreateBy(loginUser.getUsername());
try { try {
identityAuthenticationMapper.insertIdentityAuthentication(authentication); identityAuthenticationMapper.insertIdentityAuthentication(authentication);
} catch (Exception e) { } catch (Exception e) {
@@ -20,7 +20,7 @@
<if test="name != null and name != ''">name,</if> <if test="name != null and name != ''">name,</if>
<if test="identityNo != null and identityNo != ''">identity_no,</if> <if test="identityNo != null and identityNo != ''">identity_no,</if>
certification_time, certification_time,
<if test="certificationStatus != null and certificationStatus != ''">certification_status,</if> <if test="certificationStatus != null">certification_status,</if>
<if test="userName != null and userName != ''">user_name,</if> <if test="userName != null and userName != ''">user_name,</if>
<if test="createBy != null and createBy != ''">create_by,</if> <if test="createBy != null and createBy != ''">create_by,</if>
create_time create_time