ShareParamService.java 579 B

1234567891011121314151617
  1. package com.kcim.service;
  2. /**
  3. * @program: CostAccount
  4. * @description:
  5. * @author: Wang.YS
  6. * @create: 2024-01-15 20:40
  7. **/
  8. public interface ShareParamService {
  9. Object getShareParamCostList(Integer current, Integer pageSize, String computeDate, String itemType, String responsibility, String itemFilter);
  10. void computeShareParamCost(String computeDate);
  11. Object getStandShareParamCostList(Integer current, Integer pageSize, String computeDate, String itemType, String responsibility, String itemFilter);
  12. void computeStandShareParamCost(String computeDate);
  13. }