User+CoreDataProperties.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. //
  2. // User+CoreDataProperties.h
  3. //
  4. //
  5. // Created by 翟玉磊 on 2021/10/25.
  6. //
  7. //
  8. #import "User+CoreDataClass.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface User (CoreDataProperties)
  11. + (NSFetchRequest<User *> *)fetchRequest NS_SWIFT_NAME(fetchRequest());
  12. @property (nullable, nonatomic, copy) NSString *agentId;
  13. @property (nullable, nonatomic, copy) NSString *agentLogo;
  14. @property (nullable, nonatomic, copy) NSString *agentName;
  15. @property (nullable, nonatomic, copy) NSString *agentNo;
  16. @property (nonatomic) int32_t applyStatus;
  17. @property (nullable, nonatomic, copy) NSString *areaCity;
  18. @property (nullable, nonatomic, copy) NSString *areaCode;
  19. @property (nullable, nonatomic, copy) NSString *areaFullName;
  20. @property (nullable, nonatomic, copy) NSString *areaId;
  21. @property (nullable, nonatomic, copy) NSString *areaPath;
  22. @property (nonatomic) int32_t autoRenewal;
  23. @property (nullable, nonatomic, copy) NSString *biBalance;
  24. @property (nullable, nonatomic, copy) NSString *bubbleId;
  25. @property (nonatomic) int32_t bubbleRarity;
  26. @property (nonatomic) int32_t charmLevel;
  27. @property (nullable, nonatomic, copy) NSString *coinBalance;
  28. @property (nullable, nonatomic, copy) NSString *countryId;
  29. @property (nullable, nonatomic, copy) NSString *countryName;
  30. @property (nullable, nonatomic, copy) NSString *dustBalance;
  31. @property (nullable, nonatomic, copy) NSString *expireTime;
  32. @property (nullable, nonatomic, copy) NSString *fansName;
  33. @property (nullable, nonatomic, copy) NSString *headWearAnimationId;
  34. @property (nullable, nonatomic, copy) NSString *imToken;
  35. @property (nonatomic) BOOL isAnchor;
  36. @property (nonatomic) BOOL isAuth;
  37. @property (nonatomic) BOOL isBankcardBind;
  38. @property (nonatomic) BOOL isNew;
  39. @property (nonatomic) int32_t isOfficial;
  40. @property (nonatomic) BOOL isPassSet;
  41. @property (nonatomic) BOOL isPhoneBind;
  42. @property (nullable, nonatomic, copy) NSString *lastLoginTime;
  43. @property (nullable, nonatomic, copy) NSString *liveCover;
  44. @property (nullable, nonatomic, copy) NSString *locationCity;
  45. @property (nonatomic) int32_t loginStatus;
  46. @property (nonatomic) BOOL needProfile;
  47. @property (nonatomic) int32_t niceLevel;
  48. @property (nullable, nonatomic, copy) NSString *niceNo;
  49. @property (nonatomic) int32_t nobleLevel;
  50. @property (nullable, nonatomic, copy) NSString *rtmToken;
  51. @property (nonatomic) BOOL singleChatEnable;
  52. @property (nonatomic) int32_t starLevel;
  53. @property (nullable, nonatomic, copy) NSString *starValue;
  54. @property (nullable, nonatomic, copy) NSString *token;
  55. @property (nullable, nonatomic, copy) NSString *userAddress;
  56. @property (nonatomic) int32_t userAge;
  57. @property (nullable, nonatomic, copy) NSString *userAvatar;
  58. @property (nullable, nonatomic, copy) NSString *userBornTime;
  59. @property (nonatomic) int32_t userConstellation;
  60. @property (nullable, nonatomic, copy) NSString *userCover;
  61. @property (nullable, nonatomic, copy) NSString *userCreateTime;
  62. @property (nullable, nonatomic, copy) NSString *userEmail;
  63. @property (nonatomic) float userHeight;
  64. @property (nullable, nonatomic, copy) NSString *userHobby;
  65. @property (nullable, nonatomic, copy) NSString *userId;
  66. @property (nullable, nonatomic, copy) NSString *userIncome;
  67. @property (nullable, nonatomic, copy) NSString *userLanguages;
  68. @property (nullable, nonatomic, copy) NSString *userLatitude;
  69. @property (nullable, nonatomic, copy) NSString *userLongitude;
  70. @property (nullable, nonatomic, copy) NSString *userMarkingFriends;
  71. @property (nullable, nonatomic, copy) NSString *userMarriage;
  72. @property (nullable, nonatomic, copy) NSString *userName;
  73. @property (nullable, nonatomic, copy) NSString *userNo;
  74. @property (nullable, nonatomic, copy) NSString *userPass;
  75. @property (nullable, nonatomic, copy) NSString *userPhone;
  76. @property (nonatomic) int32_t userScore;
  77. @property (nonatomic) int32_t userSex;
  78. @property (nullable, nonatomic, copy) NSString *userSign;
  79. @property (nonatomic) int32_t userStatus;
  80. @property (nullable, nonatomic, copy) NSString *userTags;
  81. @property (nullable, nonatomic, copy) NSString *userUpdateTime;
  82. @property (nonatomic) float userWeight;
  83. @property (nonatomic) int32_t vipLevel;
  84. @property (nonatomic) int32_t wealthLevel;
  85. @property (nullable, nonatomic, copy) NSString *xkToken;
  86. @property (nullable, nonatomic, copy) NSString *xkUserId;
  87. @property (nullable, nonatomic, copy) NSString *yuanBalance;
  88. @property (nullable, nonatomic, copy) NSString *familyId;
  89. @property (nullable, nonatomic, copy) NSString *familyLogo;
  90. @property (nullable, nonatomic, copy) NSString *familyNo;
  91. @property (nullable, nonatomic, copy) NSString *familyName;
  92. @property (nullable, nonatomic, retain) Medal *medal;
  93. @property (nullable, nonatomic, retain) NSSet<Notification *> *notifications;
  94. @end
  95. @interface User (CoreDataGeneratedAccessors)
  96. - (void)addNotificationsObject:(Notification *)value;
  97. - (void)removeNotificationsObject:(Notification *)value;
  98. - (void)addNotifications:(NSSet<Notification *> *)values;
  99. - (void)removeNotifications:(NSSet<Notification *> *)values;
  100. @end
  101. NS_ASSUME_NONNULL_END