|
@@ -0,0 +1,23 @@
|
|
|
|
|
+package com.td.boss.game.complayersorce.service;
|
|
|
|
|
+
|
|
|
|
|
+import com.td.boss.common.service.*;
|
|
|
|
|
+import com.td.boss.game.complayersorce.pojo.ComPlayerSorce;
|
|
|
|
|
+import com.td.boss.game.complayersorce.vo.ComPlayerSorceVo;
|
|
|
|
|
+import com.td.boss.game.complayersorce.repository.ComPlayerSorceRepository;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
+import javax.persistence.EntityManager;
|
|
|
|
|
+import javax.persistence.PersistenceContext;
|
|
|
|
|
+
|
|
|
|
|
+@Service
|
|
|
|
|
+@Transactional
|
|
|
|
|
+public class ComPlayerSorceServiceImpl extends CommonServiceImpl<ComPlayerSorceVo, ComPlayerSorce, Integer> implements ComPlayerSorceService{
|
|
|
|
|
+
|
|
|
|
|
+ @PersistenceContext
|
|
|
|
|
+ private EntityManager em;
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private ComPlayerSorceRepository comPlayerSorceRepository;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+}
|