RespMap.java 380 B

1234567891011121314151617181920212223
  1. package com.jd.platform.jlog.client.cache;
  2. import javax.servlet.ServletResponse;
  3. import java.util.Map;
  4. /**
  5. * @author tangbohu
  6. * @version 1.0.0
  7. * @ClassName RespMap.java
  8. * @Description TODO
  9. * @createTime 2022年03月21日 19:18:00
  10. */
  11. public interface RespMap {
  12. /**
  13. *
  14. * @param cnt
  15. * @return
  16. */
  17. Map<String, Object> appendRespMap(String cnt);
  18. }