InsFeeAuditService.java 537 B

1234567891011121314151617181920212223242526
  1. package com.ydtech.modules.fnc.service;
  2. import com.ydtech.modules.fnc.entity.InsFeeAudit;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author gws
  10. * @since 2023-11-22
  11. */
  12. public interface InsFeeAuditService extends IService<InsFeeAudit> {
  13. void feeAudit(String orderNo,String insOrderNo) throws Exception;
  14. /**
  15. * 自动审核
  16. * @param orderNo
  17. * @param insOrderNo
  18. * @return
  19. */
  20. boolean autoFeeAudit(String orderNo,String insOrderNo);
  21. }