TBCarShootDao.java 308 B

123456789101112131415
  1. package cn.com.lzt.car.carshot.dao;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import cn.com.lzt.car.carshot.entity.TBCarShoot;
  4. /**
  5. * (TBCarShot)表数据库访问层
  6. *
  7. * @author makejava
  8. * @since 2021-10-14 17:59:59
  9. */
  10. public interface TBCarShootDao extends BaseMapper<TBCarShoot> {
  11. }