RegionService.java 215 B

12345678910111213
  1. package cn.reghao.dfs.api.iface;
  2. import cn.reghao.dfs.api.dto.KeyValue;
  3. import java.util.List;
  4. /**
  5. * @author reghao
  6. * @date 2023-01-09 16:06:53
  7. */
  8. public interface RegionService {
  9. List<KeyValue> list();
  10. }