BKLifeServiceDetailsModel.h 2.46 KB
//
//  BKLifeServiceDetailsModel.h
//  iosZhaoLinNeighbouraide
//
//  Created by 兆林 on 2017/4/19.
//  Copyright © 2017年 BIKE. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

@interface BKLifeServiceDetailsImagesModel : NSObject

/**
 高(需计算)
 */
@property (nonatomic,assign) CGFloat h;
/**
 宽(需计算)
 */
@property (nonatomic,assign) CGFloat w;
/**
 图片
 */
@property (nonatomic,copy) NSString * simg;

@end

@interface BKLifeServiceDetailsShopModel : NSObject

/**
 id
 */
@property (nonatomic,copy) NSString * id;
/**
 名称
 */
@property (nonatomic,copy) NSString * title;
/**
 联系电话
 */
@property (nonatomic,copy) NSString * phone;
/**
 图片
 */
@property (nonatomic,copy) NSString * simg;
/**
 简介
 */
@property (nonatomic,copy) NSString * desc;

@end

@interface BKLifeServiceDetailsScheduleTimeModel : NSObject

/**
 时间
 */
@property (nonatomic,copy) NSString * time;
/**
 状态 1未预定 2已预订
 */
@property (nonatomic,copy) NSString * state;
/**
 时间戳
 */
@property (nonatomic,copy) NSString * timestamp;

@end

@interface BKLifeServiceDetailsScheduleModel : NSObject

/**
 周期
 */
@property (nonatomic,copy) NSString * day;
/**
 开始时间
 */
@property (nonatomic,copy) NSString * start;
/**

 */
@property (nonatomic,copy) NSString * week;
/**
 当日档期
 */
@property (nonatomic,copy) NSArray * time;

@end

@interface BKLifeServiceDetailsModel : NSObject

/**
 产品id
 */
@property (nonatomic,copy) NSString * id;
/**
 标题
 */
@property (nonatomic,copy) NSString * title;
/**
 图片
 */
@property (nonatomic,copy) NSString * simg;
/**
 价格
 */
@property (nonatomic,copy) NSString * price;
/**
 销量
 */
@property (nonatomic,copy) NSString * sale;
/**
 描述
 */
@property (nonatomic,copy) NSString * ads;
/**
 详情图片数组
 */
@property (nonatomic,copy) NSArray * img;

/**
 1、数量 2、时间 (时间是半个小时一个单位)
 */
@property (nonatomic,strong) NSString * unit;

/**
 计量单位
 */
@property (nonatomic,strong) NSString * unit_desc;

/**
 店铺电话
 */
@property (nonatomic,strong) NSString * shop_phone;

/**
 起售数量  时间为小时
 */
@property (nonatomic,strong) NSString * base;

/**
 0不显示店铺 1显示店铺
 */
@property (nonatomic,copy) NSString * cleaning_shop_state;
/**
 店铺数据
 */
@property (nonatomic,strong) BKLifeServiceDetailsShopModel * shop;
/**
 档期数组
 */
@property (nonatomic,copy) NSArray * schedule;

@end