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 implements PlanUrlService { @Override public List selectPlanUrlIdByPlanId(Long planId,int type,int hideUrl,int status) { return this.baseMapper.selectPlanUrlIdByPlanId(planId,type,hideUrl,status); } @Override public List selectPlanUrlByPlanId(Long planId,int type,int hideUrl,int status) { return this.baseMapper.selectPlanUrlByPlanId(planId,type,hideUrl,status); } }