-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathStudent.h
45 lines (33 loc) · 1.03 KB
/
Student.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// Student.h
// CWDB
//
// Created by 陈旺 on 2017/12/3.
// Copyright © 2017年 Chavez. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "CWModelProtocol.h"
#import "School.h"
#import <UIKit/UIKit.h>
@interface Student : NSObject<CWModelProtocol>
{
float score;
NSInteger score2;
NSUInteger score3;
}
@property (nonatomic,assign) int stuId; // 学号
@property (nonatomic,copy) NSString *name;
@property (nonatomic,assign) int age;
@property (nonatomic,assign) int height;
@property (nonatomic,assign) float weight;
@property (nonatomic,copy) NSString *name1;
@property (nonatomic,assign) float hh;
@property (nonatomic,copy) NSAttributedString *attributedString;
@property (nonatomic,strong) NSDictionary *dict;
@property (nonatomic,strong) NSDictionary *dictM;
@property (nonatomic,strong) NSArray *array;
@property (nonatomic,strong) NSMutableArray *arrayM;
@property (nonatomic,strong) School *school;
@property (nonatomic,strong) UIImage *image;
@property (nonatomic,strong) NSData *data;
@end