| 123456789101112131415161718192021222324 |
- //
- // ResponsiblePersonModel.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/18.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface ResponsiblePersonModel : NSObject
- /**
- id
- */
- @property(nonatomic,strong) NSString *staffID;
- /**
- name
- */
- @property(nonatomic,strong) NSString *staffName;
- /**
- code
- */
- @property (nonatomic, strong) NSString *staffCode;
- @end
|