BaseIDAndNameModel.h 443 B

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