|
@@ -0,0 +1,15 @@
|
|
|
|
+package com.jeeplus.test.cw.projectRecords.service;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
+import com.jeeplus.test.cw.projectRecords.domain.CwProjectClientContact;
|
|
|
|
+import com.jeeplus.test.cw.projectRecords.mapper.CwProjectClientContactMapper;
|
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
|
+
|
|
|
|
+@Service
|
|
|
|
+@Transactional
|
|
|
|
+public class CwProjectClientContactService extends ServiceImpl<CwProjectClientContactMapper, CwProjectClientContact> {
|
|
|
|
+
|
|
|
|
+ private CwProjectClientContactMapper cwProjectClientContactMapper;
|
|
|
|
+
|
|
|
|
+}
|