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.
35 lines
732 B
35 lines
732 B
![]()
2 years ago
|
//
|
||
|
// SchModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2023/6/7.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface SchModel : BaseModel
|
||
|
|
||
|
/// string 发布人名称
|
||
|
@property (nonatomic ,copy) NSString *noticeCreateOrgName;
|
||
|
|
||
|
/// string 校园通知id
|
||
|
@property (nonatomic ,copy) NSString *noticeId;
|
||
|
|
||
|
/// string 通知内容
|
||
|
@property (nonatomic ,copy) NSString *noticeMassage;
|
||
|
|
||
|
/// string 通知标题
|
||
|
@property (nonatomic ,copy) NSString *noticeSubject;
|
||
|
|
||
|
/// string 作业接收人状态(2-发送未读,3-发送已读)
|
||
|
@property (nonatomic ,assign) NSInteger sendReadStatus;
|
||
|
|
||
|
/// string($date-time) 发布时间
|
||
|
@property (nonatomic ,copy) NSString *sendTime;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|