IMqSendLogMapper.java 393 B

12345678910111213141516171819
  1. package com.fdkankan.fusion.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.fdkankan.fusion.entity.CaseInquestCriminal;
  4. import com.fdkankan.fusion.entity.MqSendLog;
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. * <p>
  8. * Mapper 接口
  9. * </p>
  10. *
  11. * @author
  12. * @since 2024-10-18
  13. */
  14. @Mapper
  15. public interface IMqSendLogMapper extends BaseMapper<MqSendLog> {
  16. }