资金流向

   capitalFlowsTypes:(0,7,4,8,9)  资金流向类型

   /**
     * 资金流向类型 转入
     */
    public static final int INCOME_TYPE = 0;

    /**
     * 资金流向类型 转出
     */
    public static final int EXPENDITURE_TYPE = 1;

    /**
     * 资金流向类型 充值
     */
    public static final int RECHARGE_TYPE = 2;

    /**
     * 资金流向类型 提现
     */
    public static final int TRANSFER_TYPE = 3;

    /**
     * 资金流向类型 收款
     */
    public static final int COLLECTION_TYPE = 4;

    /**
     * 资金流向类型 退款
     */
    public static final int REFUND_TYPE = 5;

    /**
     * 资金流向类型 商家服务费
     */
    public static final int SERVICE_CHARGE_TYPE = 6;

    /**
     * 资金流向类型 返还商家服务费
     */
    public static final int REFUND_SERVICE_CHARGE_TYPE = 7;

    /**
     * 系统回滚
     */
    public static final int SYSTEM_ROLL_BACK =8;
    
    
  /**
   * 佣金类型-收入
   */
  public static final int COMMISSION_TYPE_INCOME = 9;
     
  /**
   * 佣金类型-支出
   */
  public static final int COMMISSION_TYPE_EXPAND = 10;

猜你喜欢

转载自curious.iteye.com/blog/2292782