TruckDeptMapper.java 302 B

12345678910111213141516
  1. package com.aoyang.tms.mapper;
  2. import com.aoyang.tms.entity.TruckDept;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. /**
  5. * <p>
  6. * 运力部门管理表 Mapper 接口
  7. * </p>
  8. *
  9. * @author guoyong
  10. * @since 2022-04-20
  11. */
  12. public interface TruckDeptMapper extends BaseMapper<TruckDept> {
  13. }