12345678910111213141516171819202122232425262728 |
- //
- // SPSBWaitToDoModel.h
- // 我的社保
- //
- // Created by shanp on 2021/6/22.
- //
- #import "SPSBBaseNetworkModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBWaitToDoModel : SPSBBaseNetworkModel
- @property (nonatomic, readonly, strong) NSString *spsb_city_name;
- @property (nonatomic, readonly, strong) NSString *spsb_create_time;
- @property (nonatomic, readonly, strong) NSString *spsb_f_id;//事项id
- @property (nonatomic, readonly, strong) NSString *spsb_flow_status;
- @property (nonatomic, readonly, strong) NSString *spsb_source_name;
- @property (nonatomic, readonly, strong) NSString *spsb_todo_flag;//是否需要打红点
- @property (nonatomic, readonly, strong) NSString *spsb_user_name;
- @property (nonatomic, readonly, strong) NSString *spsb_memo;//节点信息
- @property (nonatomic, readonly, strong) NSString *spsb_id_card;
- @property (nonatomic, readonly, strong) NSString *spsb_city_code;
- @end
- NS_ASSUME_NONNULL_END
|