中扬CRM客户关系管理系统
#
LSH
2023-11-28 237f9af69f9bf1a9ef8cd46e60ec368caa549ae7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.zy.crm.manager.service.impl;
 
import com.zy.crm.manager.mapper.PlanUrlMapper;
import com.zy.crm.manager.entity.PlanUrl;
import com.zy.crm.manager.service.PlanUrlService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service("planUrlService")
public class PlanUrlServiceImpl extends ServiceImpl<PlanUrlMapper, PlanUrl> implements PlanUrlService {
 
    @Override
    public List<Integer> selectPlanUrlIdByPlanId(Long planId,int type,int hideUrl,int status) {
        return this.baseMapper.selectPlanUrlIdByPlanId(planId,type,hideUrl,status);
    }
 
    @Override
    public List<PlanUrl> selectPlanUrlByPlanId(Long planId,int type,int hideUrl,int status) {
        return this.baseMapper.selectPlanUrlByPlanId(planId,type,hideUrl,status);
    }
 
}