MsTripMapper.java 344 B

12345678910111213141516
  1. package com.bofeng.dao;
  2. import com.baomidou.mybatisplus.mapper.BaseMapper;
  3. import com.bofeng.entity.MsTrip;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.springframework.stereotype.Repository;
  6. /**
  7. * @Author: xielianghe
  8. * @Date: 2020/2/22 12:43
  9. */
  10. @Mapper
  11. @Repository
  12. public interface MsTripMapper extends BaseMapper<MsTrip> {
  13. }