28 lines
615 B
Objective-C
28 lines
615 B
Objective-C
//
|
|
// NameplateModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/12/16.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "XPEnum.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NameplateModel : NSObject
|
|
///是否正在使用
|
|
@property (nonatomic, assign) BOOL isUsing;
|
|
///id
|
|
@property (nonatomic, copy) NSString * nId;
|
|
///名字
|
|
@property (nonatomic, strong) NSString *nameplateName;
|
|
///铭牌的图片
|
|
@property (nonatomic, strong) NSString *nameplateImage;
|
|
///是否过期
|
|
@property (nonatomic, assign) BOOL isExpired;
|
|
///过期的天数
|
|
@property (nonatomic,copy) NSString *expireDays;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|