ResponsiblePersonModel.h 481 B

123456789101112131415161718192021222324252627
  1. //
  2. // ResponsiblePersonModel.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/18.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:责任人模型
  9. //
  10. #import <Foundation/Foundation.h>
  11. @interface ResponsiblePersonModel : NSObject
  12. /**
  13. id
  14. */
  15. @property (nonatomic,strong) NSString *staffID;
  16. /**
  17. name
  18. */
  19. @property (nonatomic,strong) NSString *staffName;
  20. /**
  21. code
  22. */
  23. @property (nonatomic, strong) NSString *staffCode;
  24. @end