From 7d0c47b5b751a53e8da57f69a9108d133b3e8650 Mon Sep 17 00:00:00 2001
From: wzp <516075396@qq.com>
Date: 星期三, 24 三月 2021 09:01:37 +0800
Subject: [PATCH] 新建开发分支

---
 src/main/java/com/ots/project/exam/mapper/SysUserPaperMapper.java |   55 +++++++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 49 insertions(+), 6 deletions(-)

diff --git a/src/main/java/com/ots/project/exam/mapper/SysUserPaperMapper.java b/src/main/java/com/ots/project/exam/mapper/SysUserPaperMapper.java
index 402a7a8..aeddd7b 100644
--- a/src/main/java/com/ots/project/exam/mapper/SysUserPaperMapper.java
+++ b/src/main/java/com/ots/project/exam/mapper/SysUserPaperMapper.java
@@ -1,18 +1,61 @@
 package com.ots.project.exam.mapper;
+
 import com.ots.project.exam.domain.SysUserPaper;
+
 import java.util.List;
 
+/**
+ * 鐢ㄦ埛浜у搧Mapper鎺ュ彛
+ *
+ * @author ots
+ * @date 2020-03-22
+ */
 public interface SysUserPaperMapper {
-    
+    /**
+     * 鏌ヨ鐢ㄦ埛浜у搧
+     *
+     * @param userId 鐢ㄦ埛浜у搧ID
+     * @return 鐢ㄦ埛浜у搧
+     */
     SysUserPaper selectSysUserPaperById(Long userId);
-    
+
+    /**
+     * 鏌ヨ鐢ㄦ埛浜у搧鍒楄〃
+     *
+     * @param sysUserPaper 鐢ㄦ埛浜у搧
+     * @return 鐢ㄦ埛浜у搧闆嗗悎
+     */
     List<SysUserPaper> selectSysUserPaperList(SysUserPaper sysUserPaper);
-    
+
+    /**
+     * 鏂板鐢ㄦ埛浜у搧
+     *
+     * @param sysUserPaper 鐢ㄦ埛浜у搧
+     * @return 缁撴灉
+     */
     int insertSysUserPaper(SysUserPaper sysUserPaper);
-    
+
+    /**
+     * 淇敼鐢ㄦ埛浜у搧
+     *
+     * @param sysUserPaper 鐢ㄦ埛浜у搧
+     * @return 缁撴灉
+     */
     int updateSysUserPaper(SysUserPaper sysUserPaper);
-    
+
+    /**
+     * 鍒犻櫎鐢ㄦ埛浜у搧
+     *
+     * @param userId 鐢ㄦ埛浜у搧ID
+     * @return 缁撴灉
+     */
     int deleteSysUserPaperById(Long userId);
-    
+
+    /**
+     * 鎵归噺鍒犻櫎鐢ㄦ埛浜у搧
+     *
+     * @param userIds 闇�瑕佸垹闄ょ殑鏁版嵁ID
+     * @return 缁撴灉
+     */
     int deleteSysUserPaperByIds(String[] userIds);
 }

--
Gitblit v1.9.1