| | |
| | | import com.zy.crm.manager.entity.Plan; |
| | | import com.zy.crm.manager.mapper.PlanMapper; |
| | | import com.zy.crm.manager.service.PlanService; |
| | | import io.swagger.models.License; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | @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); |
| | | } |
| | | |
| | | @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) { |
| | | String uuid = null; |
| | | int times = 0; |