| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.project.plant.service;
- import java.util.List;
- import com.ruoyi.project.plant.domain.TMtdConfig;
- /**
- * 调度会议配置Service接口
- *
- * @author ssy
- * @date 2023-11-16
- */
- public interface ITMtdConfigService
- {
- /**
- * 查询调度会议配置
- *
- * @param id 调度会议配置ID
- * @return 调度会议配置
- */
- public TMtdConfig selectTMtdConfigById(Long id);
- /**
- * 查询调度会议配置列表
- *
- * @param tMtdConfig 调度会议配置
- * @return 调度会议配置集合
- */
- public List<TMtdConfig> selectTMtdConfigList(TMtdConfig tMtdConfig);
- /**
- * 新增调度会议配置
- *
- * @param tMtdConfig 调度会议配置
- * @return 结果
- */
- public int insertTMtdConfig(TMtdConfig tMtdConfig);
- /**
- * 修改调度会议配置
- *
- * @param tMtdConfig 调度会议配置
- * @return 结果
- */
- public int updateTMtdConfig(TMtdConfig tMtdConfig);
- /**
- * 批量删除调度会议配置
- *
- * @param ids 需要删除的调度会议配置ID
- * @return 结果
- */
- public int deleteTMtdConfigByIds(Long[] ids);
- /**
- * 删除调度会议配置信息
- *
- * @param id 调度会议配置ID
- * @return 结果
- */
- public int deleteTMtdConfigById(Long id);
- }
|