ResponsiblePersonModel.h 417 B

123456789101112131415161718192021222324
  1. //
  2. // ResponsiblePersonModel.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/18.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ResponsiblePersonModel : NSObject
  10. /**
  11. id
  12. */
  13. @property(nonatomic,strong) NSString *staffID;
  14. /**
  15. name
  16. */
  17. @property(nonatomic,strong) NSString *staffName;
  18. /**
  19. code
  20. */
  21. @property (nonatomic, strong) NSString *staffCode;
  22. @end