OKProject/Class/Enums.swift
@@ -187,6 +187,13 @@ enum CalType:Int,HandyJSONEnum{ case Single = 1 case Charter = 2 var rawString:String{ switch self{ case .Single:return "单程计费" case .Charter:return "包车计费" } } } enum LinesType:Int,HandyJSONEnum{ @@ -214,10 +221,19 @@ } enum OfficalPaymentType:Int{ enum OfficalPaymentType:Int,HandyJSONEnum{ //1=自费,2=企业支付) case none = 0 case selfPay = 1 case company = 2 var rawStr:String{ switch self{ case .selfPay:return "自费" case .company:return "企业支付" case .none:return "未知" } } } enum OrderAuthStatus:Int,HandyJSONEnum{