|
|
@@ -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 {
|
|
|
+
|
|
|
+}
|