MicroServiceApi.java 258 B

1234567891011121314
  1. package com.yihu.ehr.resource.constants;
  2. /**
  3. * @author l4qiang
  4. */
  5. public interface MicroServiceApi {
  6. interface Service {
  7. String RESOURCE = "svr-resource";
  8. }
  9. interface Resource {
  10. String DICT_ENTRY = "cache/dict-entry";
  11. }
  12. }