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.
|
|
|
//
|
|
|
|
// JobModel.h
|
|
|
|
// LekangGuard
|
|
|
|
//
|
|
|
|
// Created by ecell on 2023/6/7.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "BaseModel.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface JobModel : BaseModel
|
|
|
|
|
|
|
|
/// string 课程名
|
|
|
|
@property (nonatomic ,copy) NSString *courseName;
|
|
|
|
|
|
|
|
/// string 作业描述
|
|
|
|
@property (nonatomic ,copy) NSString *descriptions;
|
|
|
|
|
|
|
|
/// string($date-time) 推送时间
|
|
|
|
@property (nonatomic ,copy) NSString *docPushTime;
|
|
|
|
|
|
|
|
/// string 作业通知id
|
|
|
|
@property (nonatomic ,copy) NSString *Id;
|
|
|
|
|
|
|
|
/// string 作业接收人状态(1-未发送,2-发送未读,3-发送已读)
|
|
|
|
@property (nonatomic ,assign) NSInteger receiveStatus;
|
|
|
|
|
|
|
|
/// string 教师名称
|
|
|
|
@property (nonatomic ,copy) NSString *teacherName;
|
|
|
|
|
|
|
|
/// string 作业标题
|
|
|
|
@property (nonatomic ,copy) NSString *title;
|
|
|
|
|
|
|
|
/// string 年级
|
|
|
|
@property (nonatomic ,copy) NSString *gradeName;
|
|
|
|
|
|
|
|
/// string 班级
|
|
|
|
@property (nonatomic ,copy) NSString *className;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|