CommissionStatusEnum.java 627 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.fuint.common.enums;
  2. /**
  3. * 分佣状态
  4. *
  5. * Created by FSQ
  6. * CopyRight https://www.fuint.cn
  7. */
  8. public enum CommissionStatusEnum {
  9. NORMAL("A", "正常"),
  10. CANCEL("N", "作废");
  11. private String key;
  12. private String value;
  13. CommissionStatusEnum(String key, String value) {
  14. this.key = key;
  15. this.value = value;
  16. }
  17. public String getKey() {
  18. return key;
  19. }
  20. public void setKey(String key) {
  21. this.key = key;
  22. }
  23. public String getValue() {
  24. return value;
  25. }
  26. public void setValue(String value) {
  27. this.value = value;
  28. }
  29. }