|
@@ -0,0 +1,27 @@
|
|
|
+package com.ym.mec.biz.service.impl;
|
|
|
+
|
|
|
+
|
|
|
+import com.ym.mec.biz.dal.dao.ChildrenDayDegreeInfoDao;
|
|
|
+import com.ym.mec.biz.dal.entity.ChildrenDayDegreeInfo;
|
|
|
+import com.ym.mec.biz.service.ChildrenDayDegreeInfoService;
|
|
|
+import com.ym.mec.common.dal.BaseDAO;
|
|
|
+import com.ym.mec.common.service.impl.BaseServiceImpl;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class ChildrenDayDegreeInfoServiceImpl extends BaseServiceImpl<Integer, ChildrenDayDegreeInfo> implements ChildrenDayDegreeInfoService {
|
|
|
+ @Autowired
|
|
|
+ private ChildrenDayDegreeInfoDao childrenDayDegreeInfoDao;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public BaseDAO<Integer, ChildrenDayDegreeInfo> getDAO() {
|
|
|
+ return childrenDayDegreeInfoDao;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ChildrenDayDegreeInfo addInfo(Long orderId) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+}
|