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.
 
 
 
 

27 lines
675 B

//
// StudentInfoModel.h
// tongxin
//
// Created by ecell on 2021/11/17.
// Copyright © 2021 xTT. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "baseModel.h"
@interface StudentInfoModel : baseModel
@property(nonatomic,strong)NSNumber *code;
@property(nonatomic,copy)NSString *className;
@property(nonatomic,copy)NSString *sno;
@property(nonatomic,copy)NSString *contactPhone;
@property(nonatomic,copy)NSString *schoolName;
-(void)save:(StudentInfoModel *)model success:(void (^)(void))success failure:(void (^)(NSError *error))failure;
-(void)query:(void (^)(StudentInfoModel *model))success failure:(void (^)(NSError *error))failure;
@end