BusinessStatus.java 196 B

1234567891011121314151617181920
  1. package com.ruoyi.common.enums;
  2. /**
  3. * 操作状态
  4. *
  5. * @author ruoyi
  6. *
  7. */
  8. public enum BusinessStatus
  9. {
  10. /**
  11. * 成功
  12. */
  13. SUCCESS,
  14. /**
  15. * 失败
  16. */
  17. FAIL,
  18. }