学生资助、学生奖惩、学籍异动内容修改

This commit is contained in:
2025-12-03 10:00:14 +08:00
parent 310bedb4b5
commit f8b635f060
54 changed files with 518 additions and 389 deletions

View File

@@ -29,10 +29,17 @@
</exclusions>
</dependency>
<!-- Spring Context for @Component/@EnableScheduling -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<!-- 通用工具-->
<dependency>
<groupId>com.srs</groupId>
<artifactId>srs-common</artifactId>
<version>3.8.5</version>
</dependency>
<!--宿舍管理模块-->
@@ -60,13 +67,15 @@
<groupId>com.srs</groupId>
<artifactId>srs-routine</artifactId>
<version>3.8.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.srs</groupId>
<artifactId>srs-staff</artifactId>
<version>3.8.5</version>
</dependency>
</dependencies>
</project>
</project>

View File

@@ -5,19 +5,13 @@ import com.srs.common.utils.DateUtils;
import com.srs.comprehensive.domain.SrsStuYear;
import com.srs.comprehensive.mapper.SrsStuYearMapper;
import com.srs.comprehensive.service.ICphTestForService;
import com.srs.quartz.domain.SysJob;
import com.srs.quartz.mapper.SysJobMapper;
import org.mybatis.logging.Logger;
import org.mybatis.logging.LoggerFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.text.ParseException;
import java.text.SimpleDateFormat;