IvhQuotaActiveEvent.java 495 B

12345678910111213141516171819202122
  1. package com.backendsys.enums;
  2. public enum IvhQuotaActiveEvent {
  3. MAKE_ANCHOR("MAKE_ANCHOR", "定制数字人"),
  4. MAKE_TIMBRE("MAKE_TIMBRE", "定制声音复刻"),
  5. ;
  6. private String code;
  7. private String description;
  8. public String getCode() {
  9. return this.code;
  10. }
  11. public String getDescription() {
  12. return this.description;
  13. }
  14. IvhQuotaActiveEvent(String code, String label) {
  15. this.code = code;
  16. this.description = label;
  17. }
  18. }