SPSBWaitToDoModel.h 928 B

12345678910111213141516171819202122232425262728
  1. //
  2. // SPSBWaitToDoModel.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/6/22.
  6. //
  7. #import "SPSBBaseNetworkModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SPSBWaitToDoModel : SPSBBaseNetworkModel
  10. @property (nonatomic, readonly, strong) NSString *spsb_city_name;
  11. @property (nonatomic, readonly, strong) NSString *spsb_create_time;
  12. @property (nonatomic, readonly, strong) NSString *spsb_f_id;//事项id
  13. @property (nonatomic, readonly, strong) NSString *spsb_flow_status;
  14. @property (nonatomic, readonly, strong) NSString *spsb_source_name;
  15. @property (nonatomic, readonly, strong) NSString *spsb_todo_flag;//是否需要打红点
  16. @property (nonatomic, readonly, strong) NSString *spsb_user_name;
  17. @property (nonatomic, readonly, strong) NSString *spsb_memo;//节点信息
  18. @property (nonatomic, readonly, strong) NSString *spsb_id_card;
  19. @property (nonatomic, readonly, strong) NSString *spsb_city_code;
  20. @end
  21. NS_ASSUME_NONNULL_END