//
|
// PBPerPlanModel.h
|
// IphoneBIMe
|
//
|
// Created by ZhangJF on 2022/8/30.
|
// Copyright © 2022 ProBIM. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface PBPerPlanModel : NSObject
|
@property (nonatomic, copy) NSString *Mobile_UserId;
|
@property (nonatomic, copy) NSString *Mobile_UserType; //类型
|
@property (nonatomic, copy) NSString *Mobile_PlanNum; //计划数量
|
@property (nonatomic, copy) NSString *Mobile_Unit; //单位
|
@property (nonatomic, copy) NSString *organizeId;
|
@property (nonatomic, copy) NSString *Mobile_AddNum; // 累计
|
@end
|
|
NS_ASSUME_NONNULL_END
|