123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- //
- // User+CoreDataProperties.h
- //
- //
- // Created by 翟玉磊 on 2021/10/25.
- //
- //
- #import "User+CoreDataClass.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface User (CoreDataProperties)
- + (NSFetchRequest<User *> *)fetchRequest NS_SWIFT_NAME(fetchRequest());
- @property (nullable, nonatomic, copy) NSString *agentId;
- @property (nullable, nonatomic, copy) NSString *agentLogo;
- @property (nullable, nonatomic, copy) NSString *agentName;
- @property (nullable, nonatomic, copy) NSString *agentNo;
- @property (nonatomic) int32_t applyStatus;
- @property (nullable, nonatomic, copy) NSString *areaCity;
- @property (nullable, nonatomic, copy) NSString *areaCode;
- @property (nullable, nonatomic, copy) NSString *areaFullName;
- @property (nullable, nonatomic, copy) NSString *areaId;
- @property (nullable, nonatomic, copy) NSString *areaPath;
- @property (nonatomic) int32_t autoRenewal;
- @property (nullable, nonatomic, copy) NSString *biBalance;
- @property (nullable, nonatomic, copy) NSString *bubbleId;
- @property (nonatomic) int32_t bubbleRarity;
- @property (nonatomic) int32_t charmLevel;
- @property (nullable, nonatomic, copy) NSString *coinBalance;
- @property (nullable, nonatomic, copy) NSString *countryId;
- @property (nullable, nonatomic, copy) NSString *countryName;
- @property (nullable, nonatomic, copy) NSString *dustBalance;
- @property (nullable, nonatomic, copy) NSString *expireTime;
- @property (nullable, nonatomic, copy) NSString *fansName;
- @property (nullable, nonatomic, copy) NSString *headWearAnimationId;
- @property (nullable, nonatomic, copy) NSString *imToken;
- @property (nonatomic) BOOL isAnchor;
- @property (nonatomic) BOOL isAuth;
- @property (nonatomic) BOOL isBankcardBind;
- @property (nonatomic) BOOL isNew;
- @property (nonatomic) int32_t isOfficial;
- @property (nonatomic) BOOL isPassSet;
- @property (nonatomic) BOOL isPhoneBind;
- @property (nullable, nonatomic, copy) NSString *lastLoginTime;
- @property (nullable, nonatomic, copy) NSString *liveCover;
- @property (nullable, nonatomic, copy) NSString *locationCity;
- @property (nonatomic) int32_t loginStatus;
- @property (nonatomic) BOOL needProfile;
- @property (nonatomic) int32_t niceLevel;
- @property (nullable, nonatomic, copy) NSString *niceNo;
- @property (nonatomic) int32_t nobleLevel;
- @property (nullable, nonatomic, copy) NSString *rtmToken;
- @property (nonatomic) BOOL singleChatEnable;
- @property (nonatomic) int32_t starLevel;
- @property (nullable, nonatomic, copy) NSString *starValue;
- @property (nullable, nonatomic, copy) NSString *token;
- @property (nullable, nonatomic, copy) NSString *userAddress;
- @property (nonatomic) int32_t userAge;
- @property (nullable, nonatomic, copy) NSString *userAvatar;
- @property (nullable, nonatomic, copy) NSString *userBornTime;
- @property (nonatomic) int32_t userConstellation;
- @property (nullable, nonatomic, copy) NSString *userCover;
- @property (nullable, nonatomic, copy) NSString *userCreateTime;
- @property (nullable, nonatomic, copy) NSString *userEmail;
- @property (nonatomic) float userHeight;
- @property (nullable, nonatomic, copy) NSString *userHobby;
- @property (nullable, nonatomic, copy) NSString *userId;
- @property (nullable, nonatomic, copy) NSString *userIncome;
- @property (nullable, nonatomic, copy) NSString *userLanguages;
- @property (nullable, nonatomic, copy) NSString *userLatitude;
- @property (nullable, nonatomic, copy) NSString *userLongitude;
- @property (nullable, nonatomic, copy) NSString *userMarkingFriends;
- @property (nullable, nonatomic, copy) NSString *userMarriage;
- @property (nullable, nonatomic, copy) NSString *userName;
- @property (nullable, nonatomic, copy) NSString *userNo;
- @property (nullable, nonatomic, copy) NSString *userPass;
- @property (nullable, nonatomic, copy) NSString *userPhone;
- @property (nonatomic) int32_t userScore;
- @property (nonatomic) int32_t userSex;
- @property (nullable, nonatomic, copy) NSString *userSign;
- @property (nonatomic) int32_t userStatus;
- @property (nullable, nonatomic, copy) NSString *userTags;
- @property (nullable, nonatomic, copy) NSString *userUpdateTime;
- @property (nonatomic) float userWeight;
- @property (nonatomic) int32_t vipLevel;
- @property (nonatomic) int32_t wealthLevel;
- @property (nullable, nonatomic, copy) NSString *xkToken;
- @property (nullable, nonatomic, copy) NSString *xkUserId;
- @property (nullable, nonatomic, copy) NSString *yuanBalance;
- @property (nullable, nonatomic, copy) NSString *familyId;
- @property (nullable, nonatomic, copy) NSString *familyLogo;
- @property (nullable, nonatomic, copy) NSString *familyNo;
- @property (nullable, nonatomic, copy) NSString *familyName;
- @property (nullable, nonatomic, retain) Medal *medal;
- @property (nullable, nonatomic, retain) NSSet<Notification *> *notifications;
- @end
- @interface User (CoreDataGeneratedAccessors)
- - (void)addNotificationsObject:(Notification *)value;
- - (void)removeNotificationsObject:(Notification *)value;
- - (void)addNotifications:(NSSet<Notification *> *)values;
- - (void)removeNotifications:(NSSet<Notification *> *)values;
- @end
- NS_ASSUME_NONNULL_END
|