VehiclePositionService.java 296 B

12345678910111213141516
  1. package com.ozs.service;
  2. import com.ozs.entity.VehiclePosition;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 机车行驶表 服务类
  7. * </p>
  8. *
  9. * @author ozs
  10. * @since 2023-04-11
  11. */
  12. public interface VehiclePositionService extends IService<VehiclePosition> {
  13. }