123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- //
- // SPSBEnumerationProfile.h
- // 我的社保
- //
- // Created by shanp on 2021/4/19.
- //
- #import <UIKit/UIKit.h>
- #pragma mark - App
- typedef NS_ENUM(NSUInteger, SPSBNetworkStatus) {
- SPSBNetworkStatusDefualt = 0,
- SPSBNetworkStatusNo,
- SPSBNetworkStatusWIFI,
- SPSBNetworkStatusMobile,
- };
- typedef NS_ENUM(NSUInteger, SPSBNetworkDataDefault) {
- SPSBNetworkDataDefaultMissNetwork = 1,
- SPSBNetworkDataDefaultMissData,
- SPSBNetworkDataDefaultNoData
- };
- typedef NS_ENUM(NSUInteger, SPSBTabBarType) {
- SPSBTabBarTypeHome = 1,
- SPSBTabBarTypeQuery,
- SPSBTabBarTypeConsultation,
- SPSBTabBarTypeMine,
- };
- typedef NS_ENUM(NSInteger, SPSBPurchasersListType) {
- SPSBPurchasersListTypeManage,
- SPSBPurchasersListTypePurchase,
- SPSBPurchasersListTypeQuickPurchase,
- SPSBPurchasersListTypeQuery
- };
- #pragma mark - Open AD
- typedef NS_ENUM(NSUInteger, SPSBOpenAdSwitchStatus) {
- SPSBOpenAdSwitchStatusOff,
- SPSBOpenAdSwitchStatusOn,
- SPSBOpenAdSwitchStatusUnknow,
- SPSBOpenAdSwitchStatusForbid
- };
- #pragma mark - User
- typedef NS_ENUM(NSUInteger, SPSBLoggingStatus) {
- SPSBLoggingStatusLogin = 1,
- SPSBLoggingStatusLogout = 0
- };
- #pragma mark - 社保公积金相关
- typedef NS_ENUM(NSUInteger, SPSBPurchaseFundWay) {
- SPSBPurchaseFundWaySum = 3,
- SPSBPurchaseFundWayBase = 2
- };
- typedef NS_ENUM(NSUInteger, SPSBPurchaseType) {
- SPSBPurchaseSocialInsurance,
- SPSBPurchaseAccumulationFund,
- SPSBPurchaseSocialInsurancePackage,
- SPSBPurchaseAccumulationFundPackage
- };
- typedef NS_ENUM (NSUInteger, SPSBPurchaseBusinessType) {
- SPSBSocialInsurancePurchase,
- SPSBAccumulationFundPurchase,
- };
- typedef NS_ENUM(NSUInteger, SPSBTransferBusinessType) {
- SPSBSocialInsuranceTransfer,
- SPSBAccumulationFundTransfer
- };
- typedef NS_ENUM(NSUInteger, SPSBResultServeyType) {
- SPSBResultServeyTypeSB,
- SPSBResultServeyTypeAF,
- SPSBResultServeyTypePack,
- SPSBResultServeyTypeNo
- };
- #pragma mark - 订单相关
- typedef NS_ENUM(NSUInteger, SPSBOrderFrom) {
- SPSBOrderFromNormal = 1,
- SPSBOrderFromWaitForPay,
- SPSBOrderFromQuickPurchase
- };
- typedef NS_ENUM(NSUInteger, SPSBOrderType) {
- SPSBOrderTypePurchase = 1,
- SPSBOrderTypePurchaseWithSSCard,
- SPSBOrderTypeOrderBalance,
- SPSBOrderTypeTransfer,
- SPSBOrderTypeSalary
- };
- #pragma mark - 支付
- typedef NS_ENUM(NSUInteger, SPSBPayType) {
- SPSBPayTypeWechet,
- SPSBPayTypeAlipay
- };
|