ElectricityTimePriceMapper.java 326 B

12345678910111213141516
  1. package com.bizmatics.persistence.mapper;
  2. import com.bizmatics.model.ElectricityTimePrice;
  3. import com.bizmatics.common.mvc.base.CrudMapper;
  4. /**
  5. * <p>
  6. * 时段电价表 Mapper 接口
  7. * </p>
  8. *
  9. * @author fu
  10. * @since 2025-07-16
  11. */
  12. public interface ElectricityTimePriceMapper extends CrudMapper<ElectricityTimePrice> {
  13. }