Procházet zdrojové kódy

学生导入调整

dzx před 1 rokem
rodič
revize
c67b0e32ad

+ 16 - 0
src/main/java/com/xjrsoft/module/student/service/IBaseStudentContactService.java

@@ -0,0 +1,16 @@
+package com.xjrsoft.module.student.service;
+
+import com.github.yulichang.base.MPJBaseService;
+import com.xjrsoft.module.student.entity.BaseStudentContact;
+import com.xjrsoft.module.student.entity.BaseStudentSubsidize;
+
+/**
+* @title: 奖学金申请
+* @Author dzx
+* @Date: 2023-11-23
+* @Version 1.0
+*/
+
+public interface IBaseStudentContactService extends MPJBaseService<BaseStudentContact> {
+
+}

+ 20 - 0
src/main/java/com/xjrsoft/module/student/service/impl/BaseStudentContactServiceImpl.java

@@ -0,0 +1,20 @@
+package com.xjrsoft.module.student.service.impl;
+
+import com.github.yulichang.base.MPJBaseServiceImpl;
+import com.xjrsoft.module.student.entity.BaseStudentContact;
+import com.xjrsoft.module.student.mapper.BaseStudentContactMapper;
+import com.xjrsoft.module.student.service.IBaseStudentContactService;
+import lombok.AllArgsConstructor;
+import org.springframework.stereotype.Service;
+
+/**
+* @title: 助学金申请
+* @Author dzx
+* @Date: 2023-11-24
+* @Version 1.0
+*/
+@Service
+@AllArgsConstructor
+public class BaseStudentContactServiceImpl extends MPJBaseServiceImpl<BaseStudentContactMapper, BaseStudentContact> implements IBaseStudentContactService {
+
+}