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.

16 lines
204 B

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