65 lines
2.1 KiB
Objective-C
65 lines
2.1 KiB
Objective-C
//
|
|
// ASiteModel.h
|
|
// AMapNavIOSSDK
|
|
//
|
|
// Created by admin on 2026/3/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <MJExtension/MJExtension.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
{
|
|
"innerSiteId": "202304241822210001",
|
|
"name": "滨海大道加油加气站",
|
|
"shortName": "滨海",
|
|
"siteNo": "000001",
|
|
"city": "浙江省-嘉兴市",
|
|
"address": "嘉兴市平湖市滨海大道1515号",
|
|
"contact": "陆平",
|
|
"phone": "18666666666",
|
|
"type": "",
|
|
"coOpMode": "签约",
|
|
"booking": "无需预约",
|
|
"siteStatus": "0",
|
|
"siteStatusName": "营运中",
|
|
"startBusiness": "08:00:00",
|
|
"endBusiness": "20:00:00",
|
|
"billingMethod": "月付款",
|
|
"term": "1703952000000",
|
|
"remark": "",
|
|
"longitude": "121.07112700",
|
|
"latitude": "30.59577700",
|
|
"distance": ""
|
|
}
|
|
*/
|
|
@interface ASiteModel : NSObject
|
|
|
|
@property (nonatomic, copy, nullable) NSString *innerSiteId;
|
|
@property (nonatomic, copy) NSString *name;
|
|
@property (nonatomic, copy, nullable) NSString *shortName;
|
|
@property (nonatomic, copy, nullable) NSString *siteNo;
|
|
@property (nonatomic, copy, nullable) NSString *city;
|
|
@property (nonatomic, copy, nullable) NSString *address;
|
|
@property (nonatomic, copy, nullable) NSString *contact;
|
|
@property (nonatomic, copy, nullable) NSString *phone;
|
|
@property (nonatomic, copy, nullable) NSString *type;
|
|
@property (nonatomic, copy, nullable) NSString *coOpMode;
|
|
@property (nonatomic, copy, nullable) NSString *booking;
|
|
@property (nonatomic, copy, nullable) NSString *siteStatus;
|
|
@property (nonatomic, copy, nullable) NSString *siteStatusName;
|
|
@property (nonatomic, copy, nullable) NSString *startBusiness;
|
|
@property (nonatomic, copy, nullable) NSString *endBusiness;
|
|
@property (nonatomic, copy, nullable) NSString *billingMethod;
|
|
@property (nonatomic, copy, nullable) NSString *term;
|
|
@property (nonatomic, copy, nullable) NSString *remark;
|
|
@property (nonatomic, copy, nullable) NSString *longitude;
|
|
@property (nonatomic, copy, nullable) NSString *latitude;
|
|
@property (nonatomic, copy, nullable) NSString *distance;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|