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.
37 lines
601 B
37 lines
601 B
![]()
2 years ago
|
//
|
||
|
// ProblemModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2022/12/30.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface ProblemModel : BaseModel
|
||
|
|
||
|
/// 类别Id
|
||
|
@property (nonatomic ,copy) NSString *categoryId;
|
||
|
|
||
|
/// 内容名称
|
||
|
@property (nonatomic ,copy) NSString *content;
|
||
|
|
||
|
@property (nonatomic ,assign) NSInteger delFlag;
|
||
|
|
||
|
/// 具体内容
|
||
|
@property (nonatomic ,copy) NSString *details;
|
||
|
|
||
|
@property (nonatomic ,assign) NSInteger hotIssues;
|
||
|
|
||
|
/// 主键Id
|
||
|
@property (nonatomic ,copy) NSString *Id;
|
||
|
|
||
|
|
||
|
@property (nonatomic ,copy) NSString *categoryName;
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|