-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
张双义
committed
May 22, 2023
1 parent
35fb838
commit c04a797
Showing
189 changed files
with
3,326 additions
and
709 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// | ||
// UAVSJudgmentInfoModel.h | ||
// UdeskAVSExample | ||
// | ||
// Created by Admin on 2022/6/29. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
|
||
typedef NS_ENUM(NSUInteger, UAVSRemarkOptionType) { | ||
UAVSRemarkOptionTypeOptional = 1, //选填 默认 | ||
UAVSRemarkOptionTypeRequired, //必填 | ||
UAVSRemarkOptionTypeHide, //隐藏 | ||
}; | ||
|
||
|
||
@interface UAVSSurveySetOptionModel : NSObject | ||
|
||
@property (nonatomic, assign) BOOL isDefault;//是否默认选中 | ||
|
||
//是否解决使用 | ||
@property (nonatomic, copy ) NSString *optionValue; | ||
|
||
//满意度使用 | ||
@property (nonatomic, strong) NSNumber *optionId; | ||
@property (nonatomic, strong) NSNumber *score; | ||
@property (nonatomic, copy ) NSString *optionName; | ||
@property (nonatomic, strong) NSArray <NSString *> *labels; | ||
@property (nonatomic, assign) UAVSRemarkOptionType remarkType; | ||
|
||
@end | ||
|
||
|
||
@interface UAVSSurveySetModel : NSObject | ||
|
||
@property (nonatomic, strong) NSArray<UAVSSurveySetOptionModel *> *judgmentSetOptions; | ||
@property (nonatomic, strong) NSNumber *judgmentType; | ||
|
||
@end | ||
|
||
|
||
@interface UAVSSurveyResolveSetModel : NSObject | ||
|
||
@property (nonatomic, strong) NSArray<UAVSSurveySetOptionModel *> *resolveSetOptions; | ||
@property (nonatomic, copy ) NSString *title; | ||
|
||
@end | ||
|
||
@interface UAVSSurveyModel : NSObject | ||
|
||
@property (nonatomic, assign) BOOL status;//是否开启 | ||
@property (nonatomic, strong) NSString *name; | ||
@property (nonatomic, strong) NSString *title; | ||
|
||
@property (nonatomic, strong)UAVSSurveySetModel *judgmentSet; | ||
@property (nonatomic, strong) UAVSSurveyResolveSetModel *resolveSet; | ||
|
||
@property (nonatomic, strong) NSString *remarkSchema; | ||
|
||
@end | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
lib/UdeskAVSSDK/UIKit/Classes/Connector/UAVSLanguageConfig.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// | ||
// UdeskLanguageConfig.h | ||
// UdeskSDK | ||
// | ||
// Created by Udesk on 16/9/5. | ||
// Copyright © 2016年 Udesk. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface UAVSLanguageConfig : NSObject | ||
|
||
+ (instancetype)sharedConfig; | ||
|
||
/** | ||
* 返回table中指定的key的值 | ||
* | ||
* @param key key | ||
* @param table table | ||
* | ||
* @return 返回table中指定的key的值 | ||
*/ | ||
- (NSString *)getStringForKey:(NSString *)key withTable:(NSString *)table; | ||
|
||
//更新语言 | ||
- (void)setSDKLanguageToEnglish; | ||
- (void)setSDKLanguageToChinease; | ||
|
||
@property (nonatomic,strong) NSString *language; | ||
|
||
@end |
Oops, something went wrong.