//
|
// PBArtifactsModel.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2020/9/21.
|
// Copyright © 2020 ProBIM. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface PBArtifactsModel : NSObject
|
@property (nonatomic, copy) NSString *DirectChildrenCount;
|
@property (nonatomic, copy) NSString *ChildrenItemCount;
|
@property (nonatomic, copy) NSString *bmc_guid;
|
@property (nonatomic, copy) NSString *bmc_organizeId;
|
@property (nonatomic, copy) NSString *bmc_name;
|
@property (nonatomic, copy) NSString *bmc_code;
|
@property (nonatomic, copy) NSString *bmc_currentNumber;
|
@property (nonatomic, copy) NSString *bmc_createTime;
|
@property (nonatomic, copy) NSString *bmc_extjson;
|
@property (nonatomic, copy) NSString *bmc_elementids;
|
@end
|
|
NS_ASSUME_NONNULL_END
|
/**
|
DirectChildrenCount : 1
|
ChildrenItemCount : 1
|
bmc_guid : "410eee11-5c11-4a94-afd1-f898904f8f41"
|
bmc_organizeId : "48617e7b-07f2-4748-9199-238af8f2bfc6"
|
bmc_name : "3"
|
bmc_code : "003"
|
bmc_currentNumber : 3
|
bmc_createTime : "2020-07-13T17:43:03"
|
bmc_extjson : null
|
bmc_elementids : null
|
*/
|