|
@@ -0,0 +1,18 @@
|
|
|
+package com.ym.mec.biz.service.impl;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.ym.mec.biz.dal.dao.StudentMusicCourseFeeDao;
|
|
|
+import com.ym.mec.biz.dal.entity.StudentMusicCourseFee;
|
|
|
+import com.ym.mec.biz.service.StudentMusicCourseFeeService;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+
|
|
|
+@Service("studentMusicCourseFeeService")
|
|
|
+public class StudentMusicCourseFeeServiceImpl extends ServiceImpl<StudentMusicCourseFeeDao, StudentMusicCourseFee> implements StudentMusicCourseFeeService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public StudentMusicCourseFeeDao getDao() {
|
|
|
+ return this.baseMapper;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|