DeviceChargingHistoryMapper.java 320 B

12345678910111213141516
  1. package com.xy.mapper;
  2. import com.xy.entity.DeviceChargingHistory;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. /**
  5. * <p>
  6. * 设备计费历史表 Mapper 接口
  7. * </p>
  8. *
  9. * @author lijin
  10. * @since 2023-04-14
  11. */
  12. public interface DeviceChargingHistoryMapper extends BaseMapper<DeviceChargingHistory> {
  13. }