123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // RQVideoVipModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/3/4.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQBaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVideoVipModel : RQBaseModel
- @property (nonatomic , readwrite, assign) NSInteger id;
- /// 科目1 0未开通 1已开通
- @property (nonatomic , readwrite, assign) NSInteger subject1Int;
- /// 科目2 0未开通 1已开通
- @property (nonatomic , readwrite, assign) NSInteger subject2Int;
- /// 科目3 0未开通 1已开通
- @property (nonatomic , readwrite, assign) NSInteger subject3Int;
- /// 科目4 0未开通 1已开通
- @property (nonatomic , readwrite, assign) NSInteger subject4Int;
- /// 科目1 到期时间
- @property (nonatomic , readwrite, copy) NSString * subject1;
- /// 科目2 到期时间
- @property (nonatomic , readwrite, copy) NSString * subject2;
- /// 科目3 到期时间
- @property (nonatomic , readwrite, copy) NSString * subject3;
- /// 科目4 到期时间
- @property (nonatomic , readwrite, copy) NSString * subject4;
- /// 用户ID
- @property (nonatomic , readwrite, assign) NSInteger userId;
- /// 用户名
- @property (nonatomic , readwrite, copy) NSString * userName;
- /// 密文
- @property (nonatomic , readwrite, copy) NSString * sign;
- @end
- NS_ASSUME_NONNULL_END
|