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.

38 lines
797 B

2 years ago
//
// 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;
@end
NS_ASSUME_NONNULL_END