| 12345678910111213141516171819202122232425 |
- package com.ydtech.modules.fnc.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ydtech.modules.fnc.dto.InsuranceHandlingSettlementMonthDto;
- import com.ydtech.modules.fnc.entity.InsuranceHandlingSettlementMonthEntity;
- import com.ydtech.modules.fnc.vo.InsuranceHandlingSettlementMonthVo;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * <p>
- * 保险手续费结算关联表
- * </p>
- *
- * @author whp
- * @since 2024-08-16
- */
- @Mapper
- public interface InsuranceHandlingSettlementMonthMapper extends BaseMapper<InsuranceHandlingSettlementMonthEntity> {
- List<InsuranceHandlingSettlementMonthDto> queryList( @Param("vo") InsuranceHandlingSettlementMonthVo insuranceHandlingSettlementMonthVo);
- }
|