123456789101112131415161718 |
- //
- // CityManager.h
- // NIMDemo
- //
- // Created by Fenix Wang on 2017/7/12.
- // Copyright © 2017年 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "TradePriorityItemData.h"
- @interface CityManager : NSObject
- + (instancetype)shared;
- - (TradePriorityType)tradePriorityTypeByTeamName:(NSString *)teamName;
- @end
|