| | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.core.common.Cools; |
| | | import com.zy.crm.common.entity.UserYear; |
| | | import com.zy.crm.manager.entity.CompanyMoney; |
| | | import com.zy.crm.manager.entity.Plan; |
| | | import com.zy.crm.manager.mapper.PlanMapper; |
| | | import com.zy.crm.manager.service.PlanService; |
| | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Service("planService") |
| | | public class PlanServiceImpl extends ServiceImpl<PlanMapper, Plan> implements PlanService { |
| | |
| | | } |
| | | |
| | | @Override |
| | | public void increasePlanUrl(int planId, String url,String name,Long size) { |
| | | this.baseMapper.increasePlanUrl(planId, url,name,size); |
| | | public Integer selectPendingTaskCount(Long director) { |
| | | return this.baseMapper.selectPendingTaskCount(director); |
| | | } |
| | | |
| | | @Override |
| | | public List<Integer> selectPlanUrlId(int planId) { |
| | | return this.baseMapper.selectPlanUrlId(planId); |
| | | } |
| | | |
| | | @Override |
| | | public String selectPlanUrlPlanIdUrl(int id) { |
| | | return this.baseMapper.selectPlanUrlPlanIdUrl(id); |
| | | } |
| | | |
| | | @Override |
| | | public String selectPlanUrlPlanIdName(int id) { |
| | | return this.baseMapper.selectPlanUrlPlanIdName(id); |
| | | } |
| | | |
| | | @Override |
| | | public Long selectPlanUrlPlanIdSize(int id) { |
| | | return this.baseMapper.selectPlanUrlPlanIdSize(id); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public String getUuid(Long hostId) { |
| | |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public List<Plan> selctPlanListByDirector(Long userId){ |
| | | return this.baseMapper.selctPlanListByDirector(userId); |
| | | } |
| | | |
| | | @Override |
| | | public List<Plan> getApproval(Integer settle, Integer assistantHostSign){ |
| | | return this.baseMapper.getApproval(settle,assistantHostSign); |
| | | } |
| | | |
| | | @Override |
| | | public List<Object> selectMonth(){ |
| | | return this.baseMapper.selectMonth(); |
| | | } |
| | | |
| | | @Override |
| | | public List<UserYear> selectUserYear(Long user){ |
| | | return this.baseMapper.selectUserYear(user); |
| | | } |
| | | |
| | | } |