12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.plant.mapper;
- import java.util.List;
- import com.ruoyi.plant.domain.TCanteenCardMonth;
- /**
- * 员工月刷卡统计Mapper接口
- *
- * @author ruoyi
- * @date 2025-04-22
- */
- public interface TCanteenCardMonthMapper
- {
- /**
- * 查询员工月刷卡统计
- *
- * @param id 员工月刷卡统计主键
- * @return 员工月刷卡统计
- */
- public TCanteenCardMonth selectTCanteenCardMonthById(Long id);
- /**
- * 查询员工月刷卡统计列表
- *
- * @param tCanteenCardMonth 员工月刷卡统计
- * @return 员工月刷卡统计集合
- */
- public List<TCanteenCardMonth> selectTCanteenCardMonthList(TCanteenCardMonth tCanteenCardMonth);
- /**
- * 新增员工月刷卡统计
- *
- * @param tCanteenCardMonth 员工月刷卡统计
- * @return 结果
- */
- public int insertTCanteenCardMonth(TCanteenCardMonth tCanteenCardMonth);
- /**
- * 修改员工月刷卡统计
- *
- * @param tCanteenCardMonth 员工月刷卡统计
- * @return 结果
- */
- public int updateTCanteenCardMonth(TCanteenCardMonth tCanteenCardMonth);
- /**
- * 删除员工月刷卡统计
- *
- * @param id 员工月刷卡统计主键
- * @return 结果
- */
- public int deleteTCanteenCardMonthById(Long id);
- /**
- * 批量删除员工月刷卡统计
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteTCanteenCardMonthByIds(Long[] ids);
- }
|