30 lines
692 B
Objective-C
30 lines
692 B
Objective-C
//
|
|
// JJYAddChildBean.h
|
|
// JjyxSdk
|
|
//
|
|
// Created by Mac on 2017/12/28.
|
|
// Copyright © 2017年 wanqi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface Suser :NSObject
|
|
@property (nonatomic , assign) NSInteger suid;
|
|
@property (nonatomic , assign) NSInteger status;
|
|
@property (nonatomic , copy) NSString * sname;
|
|
|
|
@end
|
|
|
|
@interface Data :NSObject
|
|
@property (nonatomic , strong) Suser * suser;
|
|
|
|
@end
|
|
|
|
@interface VSAddChildBean :NSObject
|
|
@property (nonatomic , copy) NSString * msg;
|
|
@property (nonatomic , strong) Data * data;
|
|
@property (nonatomic , assign) NSInteger code;
|
|
|
|
@end
|