TFeeDoMapper.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.ruoyi.finance.mapper;
  2. import com.ruoyi.finance.domain.TFeeDo;
  3. import java.util.List;
  4. /**
  5. * 财务数据明细Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2021-01-18
  9. */
  10. public interface TFeeDoMapper {
  11. /**
  12. * 查询财务数据明细
  13. *
  14. * @param fId 财务数据明细ID
  15. * @return 财务数据明细
  16. */
  17. public TFeeDo selectTFeeDoById(Long fId);
  18. /**
  19. * 查询财务数据明细列表
  20. *
  21. * @param tFeeDo 财务数据明细
  22. * @return 财务数据明细集合
  23. */
  24. public List<TFeeDo> selectTFeeDoList(TFeeDo tFeeDo);
  25. /**
  26. * 新增财务数据明细
  27. *
  28. * @param tFeeDo 财务数据明细
  29. * @return 结果
  30. */
  31. public int insertTFeeDo(TFeeDo tFeeDo);
  32. /**
  33. * 修改财务数据明细
  34. *
  35. * @param tFeeDo 财务数据明细
  36. * @return 结果
  37. */
  38. public int updateTFeeDo(TFeeDo tFeeDo);
  39. /**
  40. * 删除财务数据明细
  41. *
  42. * @param fId 财务数据明细ID
  43. * @return 结果
  44. */
  45. public int deleteTFeeDoById(Long fId);
  46. /**
  47. * 批量删除财务数据明细
  48. *
  49. * @param fIds 需要删除的数据ID
  50. * @return 结果
  51. */
  52. public int deleteTFeeDoByIds(Long[] fIds);
  53. int deleteByFPid(Long fId);
  54. }