activityModel.h 685 B

12345678910111213141516171819202122232425
  1. //
  2. // activityModel.h
  3. // ZhongJingLianMeng
  4. //
  5. // Created by youke on 2018/11/19.
  6. // Copyright © 2018 youke. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface activityModel : NSObject
  10. @property (nonatomic, copy) NSString *img_path;
  11. @property (nonatomic, copy) NSString *news_Id;
  12. @property (nonatomic, copy) NSString *title;
  13. @property (nonatomic, copy) NSString *create_time;
  14. @property (nonatomic, copy) NSString *status;
  15. @end
  16. @interface activity_Model : NSObject
  17. @property (nonatomic, copy) NSString *img_path;
  18. @property (nonatomic, copy) NSString *news_Id;
  19. @property (nonatomic, copy) NSString *title;
  20. @property (nonatomic, copy) NSString *create_time;
  21. @end