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