You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
847 B

2 years ago
//
// ApplicationManageModel.h
// tongxin
//
// Created by ecell on 2023/7/12.
// Copyright © 2023 xTT. All rights reserved.
//
#import "baseModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface ApplicationManageModel : baseModel
/// 状态 0 禁用 1 启用
@property (nonatomic ,strong) NSNumber *status;
/// 修改时间戳
@property (nonatomic ,copy) NSString *updateTime;
/// 应用名称
@property (nonatomic ,copy) NSString *name;
/// 应用包名
@property (nonatomic ,copy) NSString *package;
/// imei号
@property (nonatomic ,copy) NSString *i;
/// 使用时间段 格式"06:00-07:00-1000111&08:00-09:00-1000111&10:00-11:00-1000111"
@property (nonatomic ,copy) NSString *useTime;
/// id
@property (nonatomic ,copy) NSString *_id;
/// 创建时间戳
@property (nonatomic ,copy) NSString *createTime;
@end
NS_ASSUME_NONNULL_END