|
|
@@ -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.UpmsLogMapper;
|
|
|
+import com.zheng.upms.dao.model.UpmsLog;
|
|
|
+import com.zheng.upms.dao.model.UpmsLogExample;
|
|
|
+import com.zheng.upms.rpc.api.UpmsLogService;
|
|
|
+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/3/14.
|
|
|
+ */
|
|
|
+@Service
|
|
|
+@Transactional
|
|
|
+@BaseService
|
|
|
+public class UpmsLogServiceImpl extends BaseServiceImpl<UpmsLogMapper, UpmsLog, UpmsLogExample> implements UpmsLogService {
|
|
|
+
|
|
|
+ private static Logger _log = LoggerFactory.getLogger(UpmsLogServiceImpl.class);
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ UpmsLogMapper upmsLogMapper;
|
|
|
+
|
|
|
+}
|