| 1234567891011121314151617181920212223242526 |
- package com.ydtech.modules.fnc.service;
- import com.ydtech.modules.fnc.entity.InsFeeAudit;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author gws
- * @since 2023-11-22
- */
- public interface InsFeeAuditService extends IService<InsFeeAudit> {
- void feeAudit(String orderNo,String insOrderNo) throws Exception;
- /**
- * 自动审核
- * @param orderNo
- * @param insOrderNo
- * @return
- */
- boolean autoFeeAudit(String orderNo,String insOrderNo);
- }
|