TFeeMapper.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.ruoyi.finance.mapper;
  2. import com.ruoyi.finance.domain.TFee;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.util.List;
  5. import java.util.Map;
  6. /**
  7. * 财务数据主Mapper接口
  8. *
  9. * @author ruoyi
  10. * @date 2021-01-18
  11. */
  12. public interface TFeeMapper {
  13. /**
  14. * 查询财务数据主
  15. *
  16. * @param fId 财务数据主ID
  17. * @return 财务数据主
  18. */
  19. public TFee selectTFeeById(Long fId);
  20. /**
  21. * 查询财务数据主列表
  22. *
  23. * @param tFee 财务数据主
  24. * @return 财务数据主集合
  25. */
  26. public List<TFee> selectTFeeList(TFee tFee);
  27. /**
  28. * 新增财务数据主
  29. *
  30. * @param tFee 财务数据主
  31. * @return 结果
  32. */
  33. public int insertTFee(TFee tFee);
  34. /**
  35. * 修改财务数据主
  36. *
  37. * @param tFee 财务数据主
  38. * @return 结果
  39. */
  40. public int updateTFee(TFee tFee);
  41. /**
  42. * 删除财务数据主
  43. *
  44. * @param fId 财务数据主ID
  45. * @return 结果
  46. */
  47. public int deleteTFeeById(Long fId);
  48. /**
  49. * 批量删除财务数据主
  50. *
  51. * @param fIds 需要删除的数据ID
  52. * @return 结果
  53. */
  54. public int deleteTFeeByIds(Long[] fIds);
  55. /**
  56. * 查询 对账、 收费 数据
  57. * @return
  58. */
  59. public List<Map<String, Object>> warehouseBillsFeesList(@Param("map") Map<String, Object> map);
  60. }