|
@@ -0,0 +1,18 @@
|
|
|
+package com.migao.service.impl;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.migao.entity.po.DocumentAttachment;
|
|
|
+import com.migao.mapper.DocumentAttachmentMapper;
|
|
|
+import com.migao.service.DocumentAttachmentService;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author dingsong
|
|
|
+ */
|
|
|
+@Slf4j
|
|
|
+@Service
|
|
|
+@Transactional(rollbackFor = {Exception.class})
|
|
|
+public class DocumentAttachmentServiceImpl extends ServiceImpl<DocumentAttachmentMapper, DocumentAttachment> implements DocumentAttachmentService {
|
|
|
+}
|