ITFeeService.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package com.ruoyi.finance.service;
  2. import com.ruoyi.common.core.domain.AjaxResult;
  3. import com.ruoyi.common.core.domain.model.LoginUser;
  4. import com.ruoyi.finance.domain.TFee;
  5. import com.ruoyi.finance.domain.TWareHouseFees;
  6. import java.util.List;
  7. import java.util.Map;
  8. /**
  9. * 财务数据主Service接口
  10. *
  11. * @author ruoyi
  12. * @date 2021-01-18
  13. */
  14. public interface ITFeeService {
  15. /**
  16. * 查询财务数据主
  17. *
  18. * @param fId 财务数据主ID
  19. * @return 财务数据主
  20. */
  21. public Map<String, Object> selectTFeeById(Long fId);
  22. /**
  23. * 查询财务数据主列表
  24. *
  25. * @param tFee 财务数据主
  26. * @return 财务数据主集合
  27. */
  28. public List<TFee> selectTFeeList(TFee tFee);
  29. public List<Map<String, Object>> selectTFeeList1(TFee tFee);
  30. /**
  31. * 新增财务数据主
  32. *
  33. * @param tFee 财务数据主
  34. * @return 结果
  35. */
  36. public int insertTFee(TFee tFee);
  37. /**
  38. * 保存对账、收款
  39. * @param tfee
  40. * @param tfeeDo
  41. * @param loginUser
  42. * @param fBilltype
  43. * @return
  44. */
  45. public AjaxResult insertTFeeTFeeDo(String tfee, String tfeeDo ,LoginUser loginUser,String fBilltype);
  46. /**
  47. * 修改财务数据主
  48. *
  49. * @param tFee 财务数据主
  50. * @return 结果
  51. */
  52. public int updateTFee(TFee tFee);
  53. /**
  54. * 批量删除财务数据主
  55. *
  56. * @param fIds 需要删除的财务数据主ID
  57. * @return 结果
  58. */
  59. public int deleteTFeeByIds(Long[] fIds);
  60. /**
  61. * 删除财务数据主信息
  62. *
  63. * @param fId 财务数据主ID
  64. * @return 结果
  65. */
  66. public int deleteTFeeById(Long fId);
  67. /**
  68. * 对账、收费、付费
  69. * @param tWareHouseFees
  70. * @return
  71. */
  72. public List<Map<String, Object>> warehouseBillsFeesList(TWareHouseFees tWareHouseFees,String billsType);
  73. public List<Map<String, Object>> warehouseBillsFeesList(TWareHouseFees tWareHouseFees);
  74. /**
  75. * 财务: 对账、收费、付费 流程确认
  76. * @param tfee
  77. * @param tfeeDo
  78. * @param loginUser
  79. * @param fBilltype
  80. * @return
  81. */
  82. public AjaxResult confirm(String tfee, String tfeeDo ,LoginUser loginUser,String fBilltype);
  83. public AjaxResult revoke(String tfee, String tfeeDo ,LoginUser loginUser,String fBilltype);
  84. public AjaxResult queryRemove(Long fId);
  85. }