xuhy
2025-04-28 08021fc14cf4cc5988cec72cef5fa48f0271d5a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.order.service.impl;
 
import com.ruoyi.order.entity.DataCollect;
import com.ruoyi.order.mapper.DataCollectMapper;
import com.ruoyi.order.service.DataCollectService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 收藏 服务实现类
 * </p>
 *
 * @author hjl
 * @since 2024-07-18 16:34
 */
@Service
public class DataCollectServiceImpl extends ServiceImpl<DataCollectMapper, DataCollect> implements DataCollectService {
 
}