DSLSListCleanerModel.h
900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//
// DSLSListCleanerModel.h
// zhaolin
//
// Created by 兆林 on 2017/7/25.
// Copyright © 2017年 zhaolin. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface DSLSListCleanerModel : NSObject
/**
保洁师id
*/
@property (nonatomic,copy) NSString * id;
/**
店铺id
*/
@property (nonatomic,copy) NSString * shopid;
/**
姓名
*/
@property (nonatomic,copy) NSString * name;
/**
保洁图片
*/
@property (nonatomic,copy) NSString * simg;
/**
星级
*/
@property (nonatomic,copy) NSString * star;
/**
接单量
*/
@property (nonatomic,copy) NSString * sale;
/**
分类标题
*/
@property (nonatomic,copy) NSString * group;
/**
标签(英文逗号隔开)
*/
@property (nonatomic,copy) NSString * label;
/**
满意度
*/
@property (nonatomic,copy) NSString * satisfaction;
/**
小时工个人技能
*/
@property (nonatomic,copy) NSString * specialty;
@end