OKProject/Class/Enums.swift
@@ -184,7 +184,7 @@ } } enum CalType:Int{ enum CalType:Int,HandyJSONEnum{ case Single = 1 case Charter = 2 } @@ -212,3 +212,25 @@ } } } enum OfficalPaymentType:Int{ //1=自费,2=企业支付) case selfPay = 1 case company = 2 } enum OrderAuthStatus:Int,HandyJSONEnum{ case normal = -1 //正常订单 case review = 0 //审核中 case pass = 1 //通过 case reject = 2 //拒绝 var rawStr:String{ switch self{ case .review:return "审核中" case .reject:return "已拒绝" } } }