1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.ruoyi.project.plant.service;
- import java.util.List;
- import com.ruoyi.project.plant.domain.TBrithstaffmgr;
- /**
- * 生日提醒Service接口
- *
- * @author ruoyi
- * @date 2021-01-18
- */
- public interface ITBrithstaffmgrService
- {
- /**
- * 查询生日提醒
- *
- * @param id 生日提醒ID
- * @return 生日提醒
- */
- public TBrithstaffmgr selectTBrithstaffmgrById(Long id);
- /**
- * 查询生日提醒列表
- *
- * @param tBrithstaffmgr 生日提醒
- * @return 生日提醒集合
- */
- public List<TBrithstaffmgr> selectTBrithstaffmgrList(TBrithstaffmgr tBrithstaffmgr);
- /**
- * 新增生日提醒
- *
- * @param tBrithstaffmgr 生日提醒
- * @return 结果
- */
- public int insertTBrithstaffmgr(TBrithstaffmgr tBrithstaffmgr);
- /**
- * 修改生日提醒
- *
- * @param tBrithstaffmgr 生日提醒
- * @return 结果
- */
- public int updateTBrithstaffmgr(TBrithstaffmgr tBrithstaffmgr);
- /**
- * 批量删除生日提醒
- *
- * @param ids 需要删除的生日提醒ID
- * @return 结果
- */
- public int deleteTBrithstaffmgrByIds(Long[] ids);
- /**
- * 删除生日提醒信息
- *
- * @param id 生日提醒ID
- * @return 结果
- */
- public int deleteTBrithstaffmgrById(Long id);
- /**
- * 删除所有生日提醒
- *
- * @return 结果
- */
- public int deleteAllBirthstaffmgr();
- }
|