12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.powerdistribution.mapper;
- import java.util.List;
- import com.ruoyi.powerdistribution.domain.PdmReportPlanNextDay;
- /**
- * 明日工作计划Mapper接口
- *
- * @author ruoyi
- * @date 2024-11-28
- */
- public interface PdmReportPlanNextDayMapper
- {
- /**
- * 查询明日工作计划
- *
- * @param id 明日工作计划主键
- * @return 明日工作计划
- */
- public PdmReportPlanNextDay selectPdmReportPlanNextDayById(Long id);
- /**
- * 查询明日工作计划列表
- *
- * @param pdmReportPlanNextDay 明日工作计划
- * @return 明日工作计划集合
- */
- public List<PdmReportPlanNextDay> selectPdmReportPlanNextDayList(PdmReportPlanNextDay pdmReportPlanNextDay);
- /**
- * 新增明日工作计划
- *
- * @param pdmReportPlanNextDay 明日工作计划
- * @return 结果
- */
- public int insertPdmReportPlanNextDay(PdmReportPlanNextDay pdmReportPlanNextDay);
- /**
- * 修改明日工作计划
- *
- * @param pdmReportPlanNextDay 明日工作计划
- * @return 结果
- */
- public int updatePdmReportPlanNextDay(PdmReportPlanNextDay pdmReportPlanNextDay);
- /**
- * 删除明日工作计划
- *
- * @param id 明日工作计划主键
- * @return 结果
- */
- public int deletePdmReportPlanNextDayById(Long id);
- /**
- * 批量删除明日工作计划
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deletePdmReportPlanNextDayByIds(Long[] ids);
- }
|