FundNotMappingMapper.java 375 B

12345678910
  1. package com.simuwang.base.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.simuwang.base.pojo.dos.FundNotMappingInfoDO;
  4. import org.apache.ibatis.annotations.Mapper;
  5. @Mapper
  6. public interface FundNotMappingMapper extends BaseMapper<FundNotMappingInfoDO> {
  7. FundNotMappingInfoDO getFundNotMappingInfo(FundNotMappingInfoDO fundNotMappingInfoDO);
  8. }