zhanglin8526
2023-05-09 c2d38efe0c2516295abb968442ef765e3da9544d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.shop.service.impl.shop;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.shop.domain.pojo.shop.RecommandCooperation;
import com.ruoyi.shop.mapper.shop.RecommandCooperationMapper;
import com.ruoyi.shop.service.shop.RecommandCooperationService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 *  服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-05-09
 */
@Service
public class RecommandCooperationServiceImpl extends ServiceImpl<RecommandCooperationMapper, RecommandCooperation> implements RecommandCooperationService {
 
}