opai服务管理
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
844 B

  1. package com.bw.funasr.entity;
  2. /**
  3. * 常量实体类
  4. * @author jian.mao
  5. * @date 2022年11月15日
  6. * @description
  7. */
  8. public class Constants {
  9. /**
  10. * 空字符串常量
  11. */
  12. public static final String EMPTY = "";
  13. /************************应用参数*************************************/
  14. public static final String CODE = "code";
  15. public static final String ID = "id";
  16. public static final String MESSAGE = "message";
  17. /******************************api使用*******************************/
  18. public static final String ERROR = "error";
  19. public static final String VIDEOURL = "videoUrl";
  20. public static final String VOICECONTENT = "voiceContent";
  21. public static final String TRACE = "trace";
  22. public static final String JOBID = "jobId";
  23. /**
  24. * 任务id
  25. */
  26. public static final String TASKID = "taskId";
  27. }