|
@@ -0,0 +1,18 @@
|
|
|
+package com.bizmatics.service.impl;
|
|
|
+
|
|
|
+import com.bizmatics.common.mvc.base.AbstractCrudService;
|
|
|
+import com.bizmatics.model.SiteObject;
|
|
|
+import com.bizmatics.model.Sitedtl;
|
|
|
+import com.bizmatics.persistence.mapper.SiteObjectMapper;
|
|
|
+import com.bizmatics.persistence.mapper.SitedtlMapper;
|
|
|
+import com.bizmatics.service.SiteObjectService;
|
|
|
+import com.bizmatics.service.SitedtlService;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author yq
|
|
|
+ * @date 2021/7/12 9:03
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class SiteObjectServiceImpl extends AbstractCrudService<SiteObjectMapper, SiteObject> implements SiteObjectService {
|
|
|
+}
|