|
@@ -0,0 +1,24 @@
|
|
|
+package com.rongwei.bscommon.system.service.impl;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.rongwei.bscommon.system.dao.QhsePointsUnitRecordDao;
|
|
|
+import com.rongwei.bscommon.system.service.QhsePointsUnitRecordService;
|
|
|
+import com.rongwei.bsentity.domain.QhsePointsUnitRecordDo;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 单位积分清单(QhsePointsUnitRecord)表服务实现类
|
|
|
+ *
|
|
|
+ * @author makejava
|
|
|
+ * @since 2025-09-05 15:15:12
|
|
|
+ */
|
|
|
+@Service("qhsePointsUnitRecordService")
|
|
|
+public class QhsePointsUnitRecordServiceImpl extends ServiceImpl<QhsePointsUnitRecordDao, QhsePointsUnitRecordDo> implements QhsePointsUnitRecordService {
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|