From 3a8e1524dcf0eeb610d38123d5f0a3ef838379cd Mon Sep 17 00:00:00 2001
From: linzhijie <19970921lzj>
Date: 星期一, 12 四月 2021 15:44:53 +0800
Subject: [PATCH] Merge branch '20210406-maqv2' into 20210412-youhua

---
 src/main/java/com/ots/project/exam/service/impl/SysUserPaperServiceImpl.java |   56 ++++++--------------------------------------------------
 1 files changed, 6 insertions(+), 50 deletions(-)

diff --git a/src/main/java/com/ots/project/exam/service/impl/SysUserPaperServiceImpl.java b/src/main/java/com/ots/project/exam/service/impl/SysUserPaperServiceImpl.java
index c5e444f..521f4cd 100644
--- a/src/main/java/com/ots/project/exam/service/impl/SysUserPaperServiceImpl.java
+++ b/src/main/java/com/ots/project/exam/service/impl/SysUserPaperServiceImpl.java
@@ -1,86 +1,42 @@
 package com.ots.project.exam.service.impl;
-
 import com.ots.common.utils.text.Convert;
 import com.ots.project.exam.domain.SysUserPaper;
 import com.ots.project.exam.mapper.SysUserPaperMapper;
 import com.ots.project.exam.service.ISysUserPaperService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
-
 import java.util.List;
 
-/**
- * 鐢ㄦ埛浜у搧Service涓氬姟灞傚鐞�
- *
- * @author ots
- * @date 2020-03-22
- */
 @Service
 public class SysUserPaperServiceImpl implements ISysUserPaperService {
     @Autowired
     private SysUserPaperMapper sysUserPaperMapper;
-
-    /**
-     * 鏌ヨ鐢ㄦ埛浜у搧
-     *
-     * @param userId 鐢ㄦ埛浜у搧ID
-     * @return 鐢ㄦ埛浜у搧
-     */
+    
     @Override
     public SysUserPaper selectSysUserPaperById(Long userId) {
         return sysUserPaperMapper.selectSysUserPaperById(userId);
     }
-
-    /**
-     * 鏌ヨ鐢ㄦ埛浜у搧鍒楄〃
-     *
-     * @param sysUserPaper 鐢ㄦ埛浜у搧
-     * @return 鐢ㄦ埛浜у搧
-     */
+    
     @Override
     public List<SysUserPaper> selectSysUserPaperList(SysUserPaper sysUserPaper) {
         return sysUserPaperMapper.selectSysUserPaperList(sysUserPaper);
     }
-
-    /**
-     * 鏂板鐢ㄦ埛浜у搧
-     *
-     * @param sysUserPaper 鐢ㄦ埛浜у搧
-     * @return 缁撴灉
-     */
+    
     @Override
     public int insertSysUserPaper(SysUserPaper sysUserPaper) {
         return sysUserPaperMapper.insertSysUserPaper(sysUserPaper);
     }
-
-    /**
-     * 淇敼鐢ㄦ埛浜у搧
-     *
-     * @param sysUserPaper 鐢ㄦ埛浜у搧
-     * @return 缁撴灉
-     */
+    
     @Override
     public int updateSysUserPaper(SysUserPaper sysUserPaper) {
         return sysUserPaperMapper.updateSysUserPaper(sysUserPaper);
     }
-
-    /**
-     * 鍒犻櫎鐢ㄦ埛浜у搧瀵硅薄
-     *
-     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
-     * @return 缁撴灉
-     */
+    
     @Override
     public int deleteSysUserPaperByIds(String ids) {
         return sysUserPaperMapper.deleteSysUserPaperByIds(Convert.toStrArray(ids));
     }
-
-    /**
-     * 鍒犻櫎鐢ㄦ埛浜у搧淇℃伅
-     *
-     * @param userId 鐢ㄦ埛浜у搧ID
-     * @return 缁撴灉
-     */
+    
     public int deleteSysUserPaperById(Long userId) {
         return sysUserPaperMapper.deleteSysUserPaperById(userId);
     }

--
Gitblit v1.9.1