You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
![]()
2 years ago
|
//
|
||
|
// FeedbackModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2023/7/4.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface FeedbackModel : BaseModel
|
||
|
|
||
|
/// string 反馈内容,使用 TEXT 类型存储
|
||
|
@property (nonatomic ,copy) NSString *content;
|
||
|
|
||
|
/// string 反馈主题
|
||
|
@property (nonatomic ,copy) NSString *docSubject;
|
||
|
|
||
|
/// string 反馈人电子邮件,使用 VARCHAR 类型存储。
|
||
|
@property (nonatomic ,copy) NSString *email;
|
||
|
|
||
|
/// string 反馈 ID
|
||
|
@property (nonatomic ,copy) NSString *Id;
|
||
|
|
||
|
/// string 机构ID
|
||
|
@property (nonatomic ,copy) NSString *orgId;
|
||
|
|
||
|
/// string 机构类型
|
||
|
@property (nonatomic ,copy) NSString *orgType;
|
||
|
|
||
|
/// string 反馈人电话号码
|
||
|
@property (nonatomic ,copy) NSString *phoneNumber;
|
||
|
|
||
|
/// string 反馈回复,用户提出反馈后,管理员回复接口写入
|
||
|
@property (nonatomic ,copy) NSString *reply;
|
||
|
|
||
|
/// string 反馈状态,使用 ENUM 类型存储,取值为 1=open(未处理)或 2=closed(已处理)
|
||
|
@property (nonatomic ,assign) NSString *status;
|
||
|
|
||
|
/// string 反馈人姓名,使用 VARCHAR 类型存储。
|
||
|
@property (nonatomic ,copy) NSString *userName;
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|