| 123456789101112131415161718192021222324252627 |
- //
- // ResponsiblePersonModel.h
- // IBOSS
- //
- // Created by apple on 2017/5/18.
- // Copyright © 2017年 沈阳东科云信软件有限公司. 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
|