无关风月
2024-07-11 eb6b6dbb35a9f029e0b7d269773685c19fd40976
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.dsh.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
import com.dsh.course.entity.EvaluateStudent;
import com.dsh.course.mapper.EvaluateStudentMapper;
import com.dsh.course.mapper.TStudentMapper;
import com.dsh.guns.modular.system.service.EvaluateStudentService;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
 
/**
 * <p>
 * 评价学员记录 服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-07-03
 */
@Service
public class EvaluateStudentServiceImpl extends ServiceImpl<EvaluateStudentMapper, EvaluateStudent> implements EvaluateStudentService {
 
    @Resource
    private TStudentMapper tstuMapper;
 
    private final SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm");
 
 
}