123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- //
- // MacroLocalKey.h
- // 乐销
- //
- // Created by 隋林栋 on 2017/7/20.
- // Copyright © 2017年 ping. All rights reserved.
- //
- #ifndef MacroLocalKey_h
- #define MacroLocalKey_h
- //颜色
- #define COLOR_TEXT_UNSELECT [UIColor colorWithHexString:@"#CCCCCC"]
- #define COLOR_BACKGROUND [UIColor colorWithHexString:@"#efeff4"]
- #define COLOR_LABEL [UIColor colorWithHexString:@"#333333"]
- #define COLOR_DETAIL [UIColor colorWithHexString:@"#8E8E8E"]
- #define COLOR_TIME [UIColor colorWithHexString:@"#828282"]
- #define COLOR_999 [UIColor colorWithHexString:@"#999999"]
- #define COLOR_9797 [UIColor colorWithHexString:@"#979797"]
- #define COLOR_5B5B [UIColor colorWithHexString:@"#5B5B5B"]
- #define COLOR_5D5D [UIColor colorWithHexString:@"#5D5D5D"]
- #define COLOR_777 [UIColor colorWithHexString:@"#777777"]
- #define COLOR_888 [UIColor colorWithHexString:@"#888888"]
- #define COLOR_666 [UIColor colorWithHexString:@"#666666"]
- #define COLOR_8080 [UIColor colorWithHexString:@"#808080"]
- #define COLOR_DINGDAN [UIColor colorWithHexString:@"#46BC62"]
- #define COLOR_GREEN [UIColor colorWithHexString:@"#15BD31"]
- #define COLOR_BLUE [UIColor colorWithHexString:@"#2191FF"]
- #define COLOR_555 [UIColor colorWithHexString:@"#555555"]
- #define COLOR_TEXTACELINE [UIColor colorWithHexString:@"#e8e8eb"]
- #define COLOR_BAILABEL [UIColor colorWithHexString:@"#FFFFFF"]
- #define COLOR_ADDRESSLINE [UIColor colorWithHexString:@"#d9d9d9"]
- #define COLOR_LINE [UIColor colorWithHexString:@"#EEEEEE"]
- #define COLOR_LINE_DARK [UIColor colorWithHexString:@"#d9d9d9"]
- #define COLOR_RED [UIColor colorWithHexString:@"#FF2121"]
- #define COLOR_RZ [UIColor colorWithHexString:@"#fd8324"]
- #define COLOR_KQ [UIColor colorWithHexString:@"#00c421"]
- #define COLOR_XS [UIColor colorWithHexString:@"#fb632e"]
- #define COLOR_TEXT [UIColor colorWithHexString:@"#00ADC3"]
- #define COLOR_CP [UIColor colorWithHexString:@"#ffae01"]
- #define COLOR_CG [UIColor colorWithHexString:@"#b927f2"]
- #define COLOR_ADDRESS [UIColor colorWithHexString:@"#F9F9F9"]
- #define COLOR_CHATTING [UIColor colorWithHexString:@"#f0f0f0"]
- #define COLOR_CURRENTPAGE [UIColor colorWithHexString:@"#b1b1b1"]
- #define COLOR_PAGEBACK [UIColor colorWithHexString:@"#e5e5e5"]
- #define COLOR_PRODUCT [UIColor colorWithHexString:@"#000000"]
- #define COLOR_HB [UIColor colorWithHexString:@"#FFE0AB"]
- #define COLOR_DARKBLUE [UIColor colorWithHexString:@"#366297"]
- #define COLOR_ORANGE [UIColor colorWithHexString:@"#F57847"]
- #define COLOR_F7F7 [UIColor colorWithHexString:@"#F7F7F7"]
- //透明度
- #define COLOR_BLACK_ALPHA_PER60 [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.6]
- #define COLOR_BLACK_ALPHA_PER90 [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.9]
- //map放大倍数
- #define MAPZOOMNUM 14.076151
- #define IMAGE_HEAD @"http://static.sszj888.net/"
- #define IMAGE_HEAD_DEFAULT @"img_head"
- #define IMAGE_HEAD_CUSTOMER_DEFAULT @"kh_mr"
- #define IMAGE_HEAD_STORE_DEFAULT @"mr"//don't know how to use
- #define IMAGE_HEAD_COMPANY_DEFAULT @"qy_mr"//use in company info
- #define IMAGE_SMALL_DEFAULT @"mr_zw"//use for image in list
- #define IMAGE_BIG_DEFAULT @"placeholder_b"//user for image in detail
- #define IMAGE_ARROW_RIGHT @"right_cart"
- #define IMAGE_ARROW_LEFT @"左箭头灰"
- #define StrFormat(string, args...) [NSString stringWithFormat:string, args]
- #define UIColorFromHexRGB(rgbValue) ^(){\
- unsigned int hexNumber;\
- sscanf([[rgbValue stringByReplacingOccurrencesOfString:@"#" withString:@"0x"] cStringUsingEncoding:NSUTF8StringEncoding], "%x", &hexNumber);\
- return [UIColor colorWithRed:((float)((hexNumber & 0xFF0000) >> 16))/255.0 green:((float)((hexNumber & 0xFF00) >> 8))/255.0 blue:((float)(hexNumber & 0xFF))/255.0 alpha:1.0];\
- }()
- //nav height
- #define NAVIGATIONBAR_HEIGHT (64.0f+(([UIScreen mainScreen].bounds.size.height == 812||[UIScreen mainScreen].bounds.size.height == 896)?24.0f:0.0f)) //导航条的高度
- #define TABBAR_HEIGHT (([UIScreen mainScreen].bounds.size.height == 812||[UIScreen mainScreen].bounds.size.height == 896)?83.0f:49.0f) //工具栏高度
- #define STATUSBAR_HEIGHT (([UIScreen mainScreen].bounds.size.height == 812||[UIScreen mainScreen].bounds.size.height == 896)?44.0f:20.0f) //状态栏高度
- #define ISPHONEX ([UIScreen mainScreen].bounds.size.height == 812||[UIScreen mainScreen].bounds.size.height == 896) //ISPHONEX
- #define WEAKSELF __weak typeof(self) weakSelf = self;
- #define STRONGSELF typeof(weakSelf) __strong self = weakSelf;
- #define IS8P ([UIScreen mainScreen].bounds.size.height == 736)
- #define StatusBarHeight [UIApplication sharedApplication].statusBarFrame.size.height
- //UDID MD5_UDID
- #define UDID [[[UIDevice currentDevice] identifierForVendor] UUIDString]
- #define MD5_UDID [UDID md5]
- //size
- #define StatusBarHeight [UIApplication sharedApplication].statusBarFrame.size.height
- #define SafeAreaTopHeight ((ScreenHeight >= 812.0) && [[UIDevice currentDevice].model isEqualToString:@"iPhone"] ? 88 : 64)
- #define SafeAreaBottomHeight ((ScreenHeight >= 812.0) && [[UIDevice currentDevice].model isEqualToString:@"iPhone"] ? 30 : 0)
- #define ScreenFrame [UIScreen mainScreen].bounds
- #define UIViewX(control) (control.frame.origin.x)
- #define UIViewY(control) (control.frame.origin.y)
- #define UIViewWidth(view) CGRectGetWidth(view.frame)
- #define UIViewHeight(view) CGRectGetHeight(view.frame)
- #define UIViewMaxX(view) CGRectGetMaxX(view.frame)
- #define UIViewMaxY(view) CGRectGetMaxY(view.frame)
- #define UIViewMinX(view) CGRectGetMinX(view.frame)
- #define UIViewMinY(view) CGRectGetMinY(view.frame)
- #define UIViewMidX(view) CGRectGetMidX(view.frame)
- #define UIViewMidY(view) CGRectGetMidY(view.frame)
- //color
- #define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16)) / 255.0 \
- green:((float)((rgbValue & 0xFF00) >> 8)) / 255.0 \
- blue:((float)(rgbValue & 0xFF)) / 255.0 \
- alpha:1.0]
- #define RGBA(R, G, B, A) [UIColor colorWithRed:R/255.0 green:G/255.0 blue:B/255.0 alpha:A]
- #define ColorWhiteAlpha10 RGBA(255.0, 255.0, 255.0, 0.1)
- #define ColorWhiteAlpha20 RGBA(255.0, 255.0, 255.0, 0.2)
- #define ColorWhiteAlpha40 RGBA(255.0, 255.0, 255.0, 0.4)
- #define ColorWhiteAlpha60 RGBA(255.0, 255.0, 255.0, 0.6)
- #define ColorWhiteAlpha80 RGBA(255.0, 255.0, 255.0, 0.8)
- #define ColorBlackAlpha1 RGBA(0.0, 0.0, 0.0, 0.01)
- #define ColorBlackAlpha5 RGBA(0.0, 0.0, 0.0, 0.05)
- #define ColorBlackAlpha10 RGBA(0.0, 0.0, 0.0, 0.1)
- #define ColorBlackAlpha20 RGBA(0.0, 0.0, 0.0, 0.2)
- #define ColorBlackAlpha40 RGBA(0.0, 0.0, 0.0, 0.4)
- #define ColorBlackAlpha60 RGBA(0.0, 0.0, 0.0, 0.6)
- #define ColorBlackAlpha80 RGBA(0.0, 0.0, 0.0, 0.8)
- #define ColorBlackAlpha90 RGBA(0.0, 0.0, 0.0, 0.9)
- #define ColorThemeGrayLight RGBA(104.0, 106.0, 120.0, 1.0)
- #define ColorThemeGray RGBA(92.0, 93.0, 102.0, 1.0)
- #define ColorThemeGrayDark RGBA(20.0, 21.0, 30.0, 1.0)
- #define ColorThemeYellow RGBA(250.0, 206.0, 21.0, 1.0)
- #define ColorThemeYellowDark RGBA(235.0, 181.0, 37.0, 1.0)
- #define ColorThemeBackground RGBA(14.0, 15.0, 26.0, 1.0)
- #define ColorThemeGrayDarkAlpha95 RGBA(20.0, 21.0, 30.0, 0.95)
- #define ColorThemeRed RGBA(241.0, 47.0, 84.0, 1.0)
- #define ColorRoseRed RGBA(220.0, 46.0, 123.0, 1.0)
- #define ColorClear [UIColor clearColor]
- #define ColorBlack [UIColor blackColor]
- #define ColorWhite [UIColor whiteColor]
- #define ColorGray [UIColor grayColor]
- #define ColorBlue RGBA(40.0, 120.0, 255.0, 1.0)
- #define ColorGrayLight RGBA(40.0, 40.0, 40.0, 1.0)
- #define ColorGrayDark RGBA(25.0, 25.0, 35.0, 1.0)
- #define ColorGrayDarkAlpha95 RGBA(25.0, 25.0, 35.0, 0.95)
- #define ColorSmoke RGBA(230.0, 230.0, 230.0, 1.0)
- //Font
- #define SuperSmallFont [UIFont systemFontOfSize:10.0]
- #define SuperSmallBoldFont [UIFont boldSystemFontOfSize:10.0]
- #define SmallFont [UIFont systemFontOfSize:12.0]
- #define SmallBoldFont [UIFont boldSystemFontOfSize:12.0]
- #define MediumFont [UIFont systemFontOfSize:14.0]
- #define MediumBoldFont [UIFont boldSystemFontOfSize:14.0]
- #define BigFont [UIFont systemFontOfSize:16.0]
- #define BigBoldFont [UIFont boldSystemFontOfSize:16.0]
- #define LargeFont [UIFont systemFontOfSize:18.0]
- #define LargeBoldFont [UIFont boldSystemFontOfSize:18.0]
- #define SuperBigFont [UIFont systemFontOfSize:26.0]
- #define SuperBigBoldFont [UIFont boldSystemFontOfSize:26.0]
- //adapt
- #define W(n) ((n)* [UIScreen mainScreen].bounds.size.width / 375.0f)
- #define F(n) (([UIScreen mainScreen].bounds.size.width == 320)?(n-1):([UIScreen mainScreen].bounds.size.width == 375)?(n):([UIScreen mainScreen].bounds.size.width == 414)?(n+1):(n+2))
- #define H(n) (n*[UIScreen mainScreen].bounds.size.height / 667.0f)
- //时间格式
- #define TIME_MONTH_REQUEST @"yyyy-MM"
- #define TIME_DAY_REQUEST @"yyyy-MM-dd"
- #define TIME_HOUR_REQUEST @"yyyy-MM-dd HH"
- #define TIME_MIN_REQUEST @"yyyy-MM-dd HH:mm"
- #define TIME_SEC_REQUEST @"yyyy-MM-dd HH:mm:ss"
- #define TIME_MONTH_DAY_REQUEST @"MM-dd"
- //更改版
- #define TIME_MONTH_SHOW @"yyyy-MM"
- #define TIME_DAY_SHOW @"yyyy-MM-dd"
- #define TIME_HOUR_SHOW @"yyyy-MM-dd HH"
- #define TIME_MIN_SHOW @"yyyy-MM-dd HH:mm"
- #define TIME_SEC_SHOW @"yyyy-MM-dd HH:mm:ss"
- #define TIME_MONTH_DAY_SHOW @"MM-dd"
- //中文版
- #define TIME_MONTH_CN @"yyyy年MM月"
- #define TIME_DAY_CN @"yyyy年MM月dd日"
- #define TIME_HOUR_CN @"yyyy年MM月dd日 HH"
- #define TIME_MIN_CN @"yyyy年MM月dd日 HH:mm"
- #define TIME_SEC_CN @"yyyy年MM月dd HH:mm:ss"
- #define TIME_MONTH_DAY_CN @"MM月dd日"
- //本地通知
- #define NOTICE_SELFMODEL_CHANGE @"NOTICE_SELFMODEL_CHANGE"//个人信息更改
- #define NOTICE_COMPANY_MODEL_CHANGE @"NOTICE_COMPANY_MODEL_CHANGE"//公司信息获取
- #define NOTICE_MARKET_MODULE_CHAHNGE @"NOTICE_MARKET_MODULE_CHAHNGE"//首页模块更改
- #define NOTICE_COM_FORM_CHANGE @"NOTICE_COM_FORM_CHANGE"//常用表单修改
- #define NOTICE_FORM_STATE_CHANGE @"NOTICE_FORM_STATE_CHANGE"//表单状态修改
- #define NOTICE_DYNAMIC_LIST_REFRESH @"NOTICE_DYNAMIC_LIST_REFRESH"//动态列表修改
- #define NOTICE_SELF_BG @"NOTICE_SELF_BG"//个人背景更改
- #define NOTICE_CUSTOMER_NEW_REFRESH @"NOTICE_CUSTOMER_NEW_REFRESH"//新客户数量请求
- #define NOTICE_ORDERDETAIL_STATE_CHANGE @"NOTICE_ORDERDETAIL_STATE_CHANGE"//订单状态刷新
- #define NOTICE_PAY_STATE_CHANGE @"NOTICE_PAY_STATE_CHANGE"//支付列表状态刷新
- #define NOTICE_HOME_ATTENTION_STATE_CHANGE @"NOTICE_HOME_ATTENTION_STATE_CHANGE"//首页关注列表状态刷新
- #define NOTICE_MINE_SERVICE_STATE_CHANGE @"NOTICE_MINE_SERVICE_STATE_CHANGE"//我的服务列表状态刷新
- #define NOTICE_MINE_TASK_STATE_CHANGE @"NOTICE_MINE_TASK_STATE_CHANGE"//我的任务列表状态刷新
- #define NOTICE_OTHERS_HOME_STATE_CHANGE @"NOTICE_OTHERS_HOME_STATE_CHANGE"//他人主页列表状态刷新
- #define NOTICE_STORE_LIST_CHANGE @"NOTICE_STORE_LIST_CHANGE"//仓库列表刷新
- #define NOTICE_STORE_PRODUCT_LIST_CHANGE @"NOTICE_STORE_PRODUCT_LIST_CHANGE"//仓库产品列表刷新
- #define NOTICE_SHOPPINGCART_CHANGE @"NOTICE_SHOPPINGCART_CHANGE"//购物车更改
- //本地module
- #define LOCAL_KEY_HEAD @"LOCAL_LD_"
- #define LOCAL_MODULE_OFFICEPACKAGE_WORK @"LOCAL_MODULE_OFFICEPACKAGE_WORK"//公务包 工作
- #define LOCAL_MODULE_OFFICEPACKAGE_BUSINESS @"LOCAL_MODULE_OFFICEPACKAGE_BUSINESS"//公务包 商业
- #define LOCAL_MODULE_COMTOOL @"LOCAL_MODULE_COMTOOL"//常用表单
- #define LOCAL_MODULE @"LOCAL_MODULE"//全部模块
- #define LOCAL_MODULE_PACKAGE @"LOCAL_MODULE_PACKAGE"//公务包全部模块
- #define LOCAL_MODULE_WORK_TOP @"LOCAL_MODULE_WORK_TOP"//首页顶部模块
- #define LOCAL_CUSTOMERLIST @"LOCAL_CUSTOMERLIST"//客户通讯录
- #define LOCAL_PROVINCELIST @"LOCAL_PROVINCELIST"//省份列表
- #define LOCAL_CARDLIST @"LOCAL_CARDLIST"//名片夹
- #define LOCAL_HASPINCUSTOMERLIST @"HASPINCUSTOMERLIST"//已销客户列表
- #define LOCAL_MARKETABLECUSTOMERLIST @"MARKETABLECUSTOMERLIST"//适销客户
- #define LOCAL_PRODUCTLIST @"LOCAL_PRODUCTLIST"//产品列表
- #define LOCAL_SUPPLIER_PRODUCTLIST @"LOCAL_SUPPLIER_PRODUCTLIST"//供应商产品列表
- #define LOCAL_WAREHOUSE_PRODUCTLIST @"LOCAL_WAREHOUSE_PRODUCTLIST"//产品列表
- #define LOCAL_SUPPLIER_LIST @"LOCAL_SUPPLIER_LIST"//供应商列表
- #define LOCAL_VEHICLE_LIST @"LOCAL_VEHICLE_LIST"//车辆列表
- #define LOCAL_PRUDUCT_LIST @"LOCAL_PRUDUCT_LIST"//车辆列表
- #define LOCAL_NOTICE_LIST @"LOCAL_NOTICE_LIST"//通知列表
- #define LOCAL_CHAT_LIST @"LOCAL_CHAT_LIST"//列表
- #define LOCAL_NOTICE_LIST_DELETE @"LOCAL_NOTICE_LIST_DELETE"//通知删除列表
- #define LOCAL_CROP_LIST @"LOCAL_CROP_LIST"//作物列表
- #define LOCAL_ALL_CHANNEL_LIST @"LOCAL_ALL_CHANNEL_LIST"//全部频道列表
- #define LOCAL_SELF_CHANNEL_LIST @"LOCAL_SELF_CHANNEL_LIST"//个人频道列表
- #define LOCAL_SELF_BG_URL @"LOCAL_SELF_BG_URL"//个人背景链接
- #define LOCAL_SMART_SDATE @"requestIntellCutomWithSdate"//智能营销 开始时间
- #define LOCAL_SMART_EDATE @"requestIntellCutomWithEdate"//智能营销 结束时间
- #define LOCAL_SMART_CUSTOMERS @"SelectSmartView"//智能营销 客户
- //本地key
- #define LOCAL_KEY @"LOCAL_KEY"//本地存储用户key值
- #define LOCAL_PASSWORD @"LOCAL_PASSWORD"//本地存储用户密码值
- #define LOCAL_PHONE @"LOCAL_PHONE"//本地存储用户密码值
- #define LOCAL_PRO_SPEC @"LOCAL_PRO_SPEC"//产品规格 通用
- #define LOCAL_PRO_UNITS @"LOCAL_PRO_UNITS"//产品单位 通用
- #define LOCAL_USERMODEL @"LOCAL_USERMODEL"//本地存储用户信息
- #define LOCAL_COMPANYMODEL @"LOCAL_COMPANYMODEL"//本地存储公司信息
- #define LOCAL_PHONE @"LOCAL_PHONE"//本地存储最后一个手机号
- #define LOCAL_CITY @"LOCAL_CITY"//本地存储城市
- #define LOCAL_ADDRESS_COMPANY @"LOCAL_ADDRESS_COMPANY"//公司通讯录
- #define LOCAL_LOGIN_BEFORE @"LOCAL_LOGIN_BEFORE"//第一次登陆
- #define LOCAL_ADDRESS_LOCATION @"LOCAL_ADDRESS_LOCATION"//定位地址
- #define LOCAL_REQUEST_VERSION_DATE @"LOCAL_REQUEST_VERSION_DATE"//请求版本时间
- #define LOCAL_SHOWED_GUIDE_BEFORE @"LOCAL_SHOWED_GUIDE_BEFORE"//显示引导页
- #define LOCAL_ORDER_LIST @"LOCAL_ORDER_LIST"//订单列表
- #define LOCAL_MSG_REQUEST_TIME @"LOCAL_MSG_REQUEST_TIME"//后台消息更新时间
- #define LOCAL_MSG_LOCAL_TIME @"LOCAL_MSG_LOCAL_TIME"//本地消息更新时间
- #define LOCAL_ENTER_BACK_GROUND @"LOCAL_ENTER_BACK_GROUND"//进入后台时间
- #define LOCAL_OFFLINEPAYTYPE @"LOCAL_OFFLINEPAYTYPE"//本地存储支付方式
- #define LOCAL_ORDERDETAIL_WAIT_AUDIT @"LOCAL_ORDERDETAIL_WAIT_AUDIT" //本地存储订单详情
- #define LOCAL_TYPEOFRECEIVABLES @"LOCAL_TYPEOFRECEIVABLES"//本地收款类型
- #define LOCAL_TYPEOFPAYMENT @"LOCAL_TYPEOFPAYMENT"//本地付款类型
- #define LOCAL_MODULE_FIRST @"LOCAL_MODULE_FIRST"//一级模块
- #define LOCAL_WORK_SCENES @"LOCAL_WORK_SCENES"//工作场景
- #define LOCAL_CURRENT_WORK_SCENE @"LOCAL_CURRENT_WORK_SCENE"//当前工作场景
- #define LOCAL_BOX_SCENES @"LOCAL_BOX_SCENES"//盒子一级模块
- #define LOCAL_BOX_SCENES_LEV2 @"LOCAL_BOX_SCENES_LEV2"//盒子二级模块
- #define LOCAL_COMMON_SCENES @"LOCAL_COMMON_SCENES"//常用一级模块
- #define LOCAL_SHOPPINGCART @"LOCAL_SHOPPINGCART"//购物车
- #define LOCAL_EDUCATION_LIST @"LOCAL_EDUCATION_LIST"//教育经历列表
- //聊天自定义属性
- #define LX_UserName_Key @"userName"
- #define LX_HeadImage_Key @"headImage"
- #define LX_Identification_Key @"identification"
- #define LX_FaithMoney_Key @"faithMoney"
- typedef NS_ENUM(NSUInteger, ENUM_ORDERSTUTE_TYPE) {
- ENUM_ORDERSTUTE_TYPE_CANCEL_ORDER=0,
- ENUM_ORDERSTUTE_TYPE_PAY,
- ENUM_ORDERSTUTE_TYPE_SURE,
- ENUM_ORDERSTUTE_TYPE_APPRAISE,
- ENUM_ORDERSTUTE_TYPE_DELETE_PAY,
- ENUM_ORDERSTUTE_TYPE_DELETE,
- ENUM_ORDERSTUTE_TYPE_CANCEL_REFUND,
- ENUM_ORDERSTUTE_TYPE_CONTACT,
- ENUM_ORDERSTUTE_TYPE_REMIND,
- ENUM_ORDERSTUTE_TYPE_APPLY_REFUND,
- ENUM_ORDERSTUTE_TYPE_CANCEL_PAY,
- ENUM_ORDERSTUTE_TYPE_FOR_REFUND,
- ENUM_ORDERSTUTE_TYPE_PAY_NOPASS,
- ENUM_ORDERSTUTE_TYPE_DETAIL,
- ENUM_ORDERSTUTE_TYPE_REFUND_DETAIL,
- ENUM_ORDERSTUTE_TYPE_LOOK,
- ENUM_ORDERSTUTE_TYPE_AGAIN,
- ENUM_ORDERSTUTE_TYPE_REFUND_NOPASS,
- ENUM_ORDERSTUTE_TYPE_EXCHANGE,
- ENUM_ORDERSTUTE_TYPE_RETURN
- };
- #endif /* MacroLocalKey_h */
|