NavParseStatusConst.java 625 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.simuwang.base.common.conts;
  2. public class NavParseStatusConst {
  3. /**
  4. * 成功
  5. */
  6. public final static Integer SUCCESS = 1;
  7. /**
  8. * 净值缺失
  9. */
  10. public final static Integer NAV_DEFICIENCY = 2;
  11. /**
  12. * 未匹配基金
  13. */
  14. public final static Integer NOT_MATCH = 3;
  15. /**
  16. * 净值不大于0
  17. */
  18. public final static Integer NAV_NEGATIVE = 4;
  19. /**
  20. * 资产净值不大于0
  21. */
  22. public final static Integer ASSET_NET_NEGATIVE = 5;
  23. /**
  24. * 净值日期不合法
  25. */
  26. public final static Integer PRICE_DATE_ERROR = 6;
  27. }