|
|
@@ -0,0 +1,29 @@
|
|
|
+package com.zheng.upms.rpc.service.impl;
|
|
|
+
|
|
|
+import com.zheng.common.annotation.BaseService;
|
|
|
+import com.zheng.common.base.BaseServiceImpl;
|
|
|
+import com.zheng.upms.dao.mapper.UpmsUserOrganizationMapper;
|
|
|
+import com.zheng.upms.dao.model.UpmsUserOrganization;
|
|
|
+import com.zheng.upms.dao.model.UpmsUserOrganizationExample;
|
|
|
+import com.zheng.upms.rpc.api.UpmsUserOrganizationService;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 用户组织service实现
|
|
|
+ * Created by shuzheng on 2017/2/6.
|
|
|
+ */
|
|
|
+@Service
|
|
|
+@Transactional
|
|
|
+@BaseService
|
|
|
+public class UpmsUserOrganizationServiceImpl extends BaseServiceImpl<UpmsUserOrganizationMapper, UpmsUserOrganization, UpmsUserOrganizationExample> implements UpmsUserOrganizationService {
|
|
|
+
|
|
|
+ private static Logger _log = LoggerFactory.getLogger(UpmsUserOrganizationServiceImpl.class);
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ UpmsUserOrganizationMapper upmsUserOrganizationMapper;
|
|
|
+
|
|
|
+}
|