package com.smartor.service.impl; import com.ruoyi.common.utils.DateUtils; import com.smartor.domain.SchemeCategory; import com.smartor.mapper.SchemeCategoryMapper; import com.smartor.service.ISchemeCategoryService; import com.smartor.service.IntelligenceCenterService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * 智能中心 * * @author ls * @date 2023-05-23 */ @Service public class IntelligenceCenterServiceImpl implements IntelligenceCenterService { /** * 删除方案分类信息 * * @param id 方案分类主键 * @return 结果 */ @Override public int deleteSchemeCategoryById(Long id) { return 0; } }