package com.ydtech.modules.fnc.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.ydtech.modules.fnc.entity.SettlementDocumentaryFeesEntity; import com.ydtech.modules.fnc.entity.SettlementDocumentaryLogEntity; import com.ydtech.modules.fnc.vo.SettlementDocumentaryFeesVo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.HashMap; import java.util.List; @Mapper public interface SettlementDocumentaryFeesMapper extends BaseMapper { List querySettle(HashMap params); /** * * @param invoiceIds 开票id * @return 总金额 开票号 开票时间 */ List> getOtherSettldetail(HashMap params); void batchByInvoice( HashMap ids); List> getInvoicIds(HashMap params); SettlementDocumentaryFeesEntity getByParentSettlementAmount(String id); }