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);
|
}
|
|
}
|