IConfigurationService.java 299 B

12345678910111213141516
  1. package com.huimv.receive.service;
  2. import com.huimv.receive.entity.Configuration;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author author
  10. * @since 2023-09-04
  11. */
  12. public interface IConfigurationService extends IService<Configuration> {
  13. }