IPriceListService.java 792 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.fdkankan.sale.service;
  2. import com.fdkankan.sale.entity.PriceList;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import java.math.BigDecimal;
  5. import java.util.List;
  6. /**
  7. * <p>
  8. * 服务类
  9. * </p>
  10. *
  11. * @author
  12. * @since 2023-02-16
  13. */
  14. public interface IPriceListService extends IService<PriceList> {
  15. List<PriceList> getByRepairId(String repairId);
  16. BigDecimal getAmountByRepairId(String repairId);
  17. void updateStatusByRepairId(String repairId);
  18. void updateStatusByRepairId(String repairId,Integer status);
  19. List<PriceList> getByRepairIdAndStatus(String repairId, Integer status);
  20. BigDecimal getRobAmountByRepairId(String repairId);
  21. List<PriceList> getCheckAmountByRepairId(String repairId);
  22. void delNoCm(String repairId);
  23. }