package com.simuwang.base.common.conts; public class NavParseStatusConst { /** * 成功 */ public final static Integer SUCCESS = 1; /** * 净值缺失 */ public final static Integer NAV_DEFICIENCY = 2; /** * 未匹配基金 */ public final static Integer NOT_MATCH = 3; /** * 净值不大于0 */ public final static Integer NAV_NEGATIVE = 4; /** * 资产净值不大于0 */ public final static Integer ASSET_NET_NEGATIVE = 5; /** * 净值日期不合法 */ public final static Integer PRICE_DATE_ERROR = 6; }