Przeglądaj źródła

getTmsLogFaceListByStuId 接口名称修改

小么熊🐻 1 rok temu
rodzic
commit
0a97b55ee1

+ 3 - 3
jsjp-admin/src/main/java/com/miaxis/app/controller/tms/TmsStudentInfoController.java

@@ -100,15 +100,15 @@ public class TmsStudentInfoController extends BaseController {
     /**
      * 根据学员id学员训练照片
      */
-    @GetMapping("/getTmsLogFacListByStuId")
+    @GetMapping("/getTmsLogFaceListByStuId")
     @ApiOperation("根据学员id学员训练照片")
     @ApiImplicitParams({
             @ApiImplicitParam(name = "pageNum", value = "当前页码", dataType = "int", paramType = "query", required = false),
             @ApiImplicitParam(name = "pageSize", value = "每页数据量", dataType = "int", paramType = "query", required = false),
     })
-    public ResponsePageInfo<TmsLogFaceVo> getTmsLogFacListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO) {
+    public ResponsePageInfo<TmsLogFaceVo> getTmsLogFaceListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO) {
         startPage();
-        List<TmsLogFaceVo> logFaceListList = studentInfoService.getTmsLogFacListByStuId(studentInfoIdDTO);
+        List<TmsLogFaceVo> logFaceListList = studentInfoService.getTmsLogFaceListByStuId(studentInfoIdDTO);
         return toResponsePageInfo(logFaceListList);
     }
 

+ 1 - 1
jsjp-service/src/main/java/com/miaxis/tms/mapper/TmsStudentInfoMapper.java

@@ -23,7 +23,7 @@ public interface TmsStudentInfoMapper extends BaseMapper<TmsStudentInfoVo> {
 
     int upStuAppCoachIdById(TmsStudentInfoQrDTO studentInfoQrDTO);
 
-    List<TmsLogFaceVo> getTmsLogFacListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO);
+    List<TmsLogFaceVo> getTmsLogFaceListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO);
 
     List<TmsSignVo> getTmsSignListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO);
 

+ 1 - 1
jsjp-service/src/main/java/com/miaxis/tms/service/ITmsStudentInfoService.java

@@ -28,7 +28,7 @@ public interface ITmsStudentInfoService extends IService<TmsStudentInfoVo> {
 
     int upStuAppCoachIdById(TmsStudentInfoQrDTO studentInfoQrDTO);
 
-    List<TmsLogFaceVo> getTmsLogFacListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO);
+    List<TmsLogFaceVo> getTmsLogFaceListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO);
 
     List<TmsSignVo> getTmsSignListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO);
 

+ 2 - 2
jsjp-service/src/main/java/com/miaxis/tms/service/impl/TmsStudentInfoServiceImpl.java

@@ -59,8 +59,8 @@ public class TmsStudentInfoServiceImpl extends ServiceImpl<TmsStudentInfoMapper,
     }
 
     @Override
-    public List<TmsLogFaceVo> getTmsLogFacListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO) {
-        return mapper.getTmsLogFacListByStuId(studentInfoIdDTO);
+    public List<TmsLogFaceVo> getTmsLogFaceListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO) {
+        return mapper.getTmsLogFaceListByStuId(studentInfoIdDTO);
     }
 
     @Override

+ 1 - 1
jsjp-service/src/main/resources/mapper/tms/TmsStudentInfoMapper.xml

@@ -230,7 +230,7 @@
      WHERE T.TSO_ID = #{id}
     </select>
 
-    <select id="getTmsLogFacListByStuId" parameterType="com.miaxis.tms.dto.TmsStudentInfoIdDTO" resultType="com.miaxis.tms.vo.TmsLogFaceVo" >
+    <select id="getTmsLogFaceListByStuId" parameterType="com.miaxis.tms.dto.TmsStudentInfoIdDTO" resultType="com.miaxis.tms.vo.TmsLogFaceVo" >
         select f.crdate,f.sim,f.sourceimg,f.img, f.similar, f.type from tms_log_face_info@tms${city} f
         where f.stu_out_id = #{id}
         order by f.crdate desc