opple_objc_json_client.h 36.6 KB
Newer Older
曹云霄's avatar
曹云霄 committed
1 2 3 4 5 6 7 8

#import <Foundation/Foundation.h>
#import "JSONModel.h"

#ifndef DEF_SortDirection_H
#define DEF_SortDirection_H

/**
9
 *  @Description: TODO(排序定义)
曹云霄's avatar
曹云霄 committed
10 11 12 13 14
 *  asc 升序
 *  @author  张代浩
 *  desc 降序
 */
/**
15
 *
曹云霄's avatar
曹云霄 committed
16 17 18
 */
extern NSString * const SORTDIRECTION_ASC;
/**
19
 *
曹云霄's avatar
曹云霄 committed
20 21 22 23 24 25 26 27 28 29
 */
extern NSString * const SORTDIRECTION_DESC;

#endif /* DEF_SortDirection_H */


@class PageRows;
@class RsResponse;
@class LoginInfo;
@class ModifyPasswordRequest;
30 31
@class DataDict;
@class GoodsCondition;
曹云霄's avatar
曹云霄 committed
32 33 34
@class GoodsFilter;
@class OrderBill;
@class SceneCondition;
35
@class SceneFilter;
曹云霄's avatar
曹云霄 committed
36
@class TOConsumerEntity;
37 38
@class TOGoodsBrandEntity;
@class TOGoodsLabelEntity;
曹云霄's avatar
曹云霄 committed
39 40
@class TOHottagEntity;
@class TOOrderdetailEntity;
41
@class TOSceneEntity;
曹云霄's avatar
曹云霄 committed
42 43
@class TOShopcartEntity;
@class IdEntity;
44 45
@class TOShippingAddrEntity;
@class TOPositionEntity;
曹云霄's avatar
曹云霄 committed
46
@class TOOrderEntity;
47 48
@class TOGoodsLabelCategoryEntity;
@class TOGoodsCategoryEntity;
曹云霄's avatar
曹云霄 committed
49
@class TOGoodsEntity;
50 51
@class HotTagResponse;
@class GoodsCategory;
曹云霄's avatar
曹云霄 committed
52 53 54 55 56 57 58 59
@class ResetPasswordRequest;
@class LoginResult;
@class ConsumerQueryCondition;
@class ExceptionCode;
@class DataPage;
@class SceneResponse;
@class TSBaseUser;
@class TSDepart;
60 61
@class TSUserOrg;
@class ShopCartResponse;
曹云霄's avatar
曹云霄 committed
62 63 64 65 66
@class OrderResponse;
@class GoodsResponse;
@class ConsumerPageResult;
@class TSUser;
@class TOEmployee;
67

曹云霄's avatar
曹云霄 committed
68 69 70 71
@protocol PageRows @end
@protocol RsResponse @end
@protocol LoginInfo @end
@protocol ModifyPasswordRequest @end
72 73
@protocol DataDict @end
@protocol GoodsCondition @end
曹云霄's avatar
曹云霄 committed
74 75 76
@protocol GoodsFilter @end
@protocol OrderBill @end
@protocol SceneCondition @end
77
@protocol SceneFilter @end
曹云霄's avatar
曹云霄 committed
78
@protocol TOConsumerEntity @end
79 80
@protocol TOGoodsBrandEntity @end
@protocol TOGoodsLabelEntity @end
曹云霄's avatar
曹云霄 committed
81 82
@protocol TOHottagEntity @end
@protocol TOOrderdetailEntity @end
83
@protocol TOSceneEntity @end
曹云霄's avatar
曹云霄 committed
84 85
@protocol TOShopcartEntity @end
@protocol IdEntity @end
86 87
@protocol TOShippingAddrEntity @end
@protocol TOPositionEntity @end
曹云霄's avatar
曹云霄 committed
88
@protocol TOOrderEntity @end
89 90
@protocol TOGoodsLabelCategoryEntity @end
@protocol TOGoodsCategoryEntity @end
曹云霄's avatar
曹云霄 committed
91
@protocol TOGoodsEntity @end
92 93
@protocol HotTagResponse @end
@protocol GoodsCategory @end
曹云霄's avatar
曹云霄 committed
94 95 96 97 98 99 100 101
@protocol ResetPasswordRequest @end
@protocol LoginResult @end
@protocol ConsumerQueryCondition @end
@protocol ExceptionCode @end
@protocol DataPage @end
@protocol SceneResponse @end
@protocol TSBaseUser @end
@protocol TSDepart @end
102 103
@protocol TSUserOrg @end
@protocol ShopCartResponse @end
曹云霄's avatar
曹云霄 committed
104 105 106 107 108
@protocol OrderResponse @end
@protocol GoodsResponse @end
@protocol ConsumerPageResult @end
@protocol TSUser @end
@protocol TOEmployee @end
109 110


曹云霄's avatar
曹云霄 committed
111 112 113 114 115 116 117 118
#ifndef DEF_PageRows_H
#define DEF_PageRows_H

/**
 *  分页类
 
 @author Administrator
 @since 0.1
119
 
曹云霄's avatar
曹云霄 committed
120 121
 */
@interface PageRows : JSONModel
122
/**
曹云霄's avatar
曹云霄 committed
123
 * (no documentation provided)
124 125
 *
 *
曹云霄's avatar
曹云霄 committed
126 127
 */
@property (nonatomic, assign) int page;
128
/**
曹云霄's avatar
曹云霄 committed
129
 * (no documentation provided)
130 131
 *
 *
曹云霄's avatar
曹云霄 committed
132 133
 */
@property (nonatomic, assign) int rows;
134
/**
曹云霄's avatar
曹云霄 committed
135
 * (no documentation provided)
136 137
 *
 *
曹云霄's avatar
曹云霄 committed
138 139 140 141 142 143
 */
@property (nonatomic, assign) int total;
@end /* interface PageRows */

#endif

144

曹云霄's avatar
曹云霄 committed
145 146 147 148 149 150 151 152
#ifndef DEF_RsResponse_H
#define DEF_RsResponse_H

/**
 *  Restful Service response base
 
 @author Debenson
 @since 0.1
153
 
曹云霄's avatar
曹云霄 committed
154 155
 */
@interface RsResponse : JSONModel
156
/**
曹云霄's avatar
曹云霄 committed
157
 * 0:正常, 非0异常。
158 159
 *
 *
曹云霄's avatar
曹云霄 committed
160 161
 */
@property (nonatomic, assign) long long code;
162
/**
曹云霄's avatar
曹云霄 committed
163
 * 异常描述
164 165
 *
 *
曹云霄's avatar
曹云霄 committed
166 167
 */
@property (nonatomic, copy) NSString *message;
168
/**
曹云霄's avatar
曹云霄 committed
169
 * 返回数据
170 171
 *
 *
曹云霄's avatar
曹云霄 committed
172 173 174 175 176 177
 */
@property (nonatomic, strong) NSObject *data;
@end /* interface RsResponse */

#endif

178

曹云霄's avatar
曹云霄 committed
179 180 181 182 183 184 185 186
#ifndef DEF_LoginInfo_H
#define DEF_LoginInfo_H

/**
 *  经销商用户登录信息。
 
 @author Debenson
 @since 0.1
187
 
曹云霄's avatar
曹云霄 committed
188 189
 */
@interface LoginInfo : JSONModel
190
/**
曹云霄's avatar
曹云霄 committed
191
 * 用户名
192 193
 *
 *
曹云霄's avatar
曹云霄 committed
194 195
 */
@property (nonatomic, copy) NSString *username;
196
/**
曹云霄's avatar
曹云霄 committed
197
 * 密码
198 199
 *
 *
曹云霄's avatar
曹云霄 committed
200 201 202 203 204 205
 */
@property (nonatomic, copy) NSString *password;
@end /* interface LoginInfo */

#endif

206

曹云霄's avatar
曹云霄 committed
207 208 209 210 211 212 213 214
#ifndef DEF_ModifyPasswordRequest_H
#define DEF_ModifyPasswordRequest_H

/**
 *  修改密码请求。
 
 @author Debenson
 @since 0.1
215
 
曹云霄's avatar
曹云霄 committed
216 217
 */
@interface ModifyPasswordRequest : JSONModel
218
/**
曹云霄's avatar
曹云霄 committed
219
 * 员工标识。
220 221
 *
 *
曹云霄's avatar
曹云霄 committed
222 223
 */
@property (nonatomic, copy) NSString *employeeId;
224
/**
曹云霄's avatar
曹云霄 committed
225
 * 原密码。
226 227
 *
 *
曹云霄's avatar
曹云霄 committed
228 229
 */
@property (nonatomic, copy) NSString *oldPassword;
230
/**
曹云霄's avatar
曹云霄 committed
231
 * 新密码
232 233
 *
 *
曹云霄's avatar
曹云霄 committed
234 235 236 237 238 239
 */
@property (nonatomic, copy) NSString *fnewPassword;
@end /* interface ModifyPasswordRequest */

#endif

240 241 242

#ifndef DEF_DataDict_H
#define DEF_DataDict_H
曹云霄's avatar
曹云霄 committed
243 244

/**
245
 *  @author Administrator
曹云霄's avatar
曹云霄 committed
246
 @since 0.1
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
 
 */
@interface DataDict : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *typename;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *typecode;
@end /* interface DataDict */

#endif
曹云霄's avatar
曹云霄 committed
265

266 267 268 269 270 271 272 273 274

#ifndef DEF_GoodsCondition_H
#define DEF_GoodsCondition_H

/**
 *  @author NuoSa
 
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
275
 */
276 277 278 279 280
@interface GoodsCondition : JSONModel
/**
 * 查询条件是 商品名称
 *
 *
曹云霄's avatar
曹云霄 committed
281
 */
282 283 284 285 286
@property (nonatomic, copy) NSString *nameLike;
/**
 * 查询条件是 类型id,取值: GoodsCategory#getId()
 *
 *
曹云霄's avatar
曹云霄 committed
287
 */
288 289 290 291 292
@property (nonatomic, copy) NSString *categoryEquals;
/**
 * 查询条件是 风格
 *
 *
曹云霄's avatar
曹云霄 committed
293
 */
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
@property (nonatomic, copy) NSString *styleEquals;
/**
 * 查询条件是 空间
 *
 *
 */
@property (nonatomic, copy) NSString *spaceEquals;
/**
 * 查询条件是 材质
 *
 *
 */
@property (nonatomic, copy) NSString *materialEqueals;
/**
 * 查询条件是 起始价格
 *
 *
 */
@property (nonatomic, strong) NSNumber *startprice;
/**
 * 查询条件是 起始价格
 *
 *
 */
@property (nonatomic, strong) NSNumber *endprice;
/**
 * 分页
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface GoodsCondition */
曹云霄's avatar
曹云霄 committed
326 327 328

#endif

329

曹云霄's avatar
曹云霄 committed
330 331 332 333 334 335
#ifndef DEF_GoodsFilter_H
#define DEF_GoodsFilter_H

/**
 *  @author Debenson
 @since 0.1
336
 
曹云霄's avatar
曹云霄 committed
337 338
 */
@interface GoodsFilter : JSONModel
339
/**
曹云霄's avatar
曹云霄 committed
340
 * 风格
341 342
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
343
 */
344 345 346
@property (nonatomic, strong) NSArray<DataDict> *styles;
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
347
 * @see GoodsCategory
348
 *
曹云霄's avatar
曹云霄 committed
349 350
 */
@property (nonatomic, strong) NSArray<GoodsCategory> *categories;
351
/**
曹云霄's avatar
曹云霄 committed
352
 * 空间
353 354
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
355
 */
356 357
@property (nonatomic, strong) NSArray<DataDict> *space;
/**
曹云霄's avatar
曹云霄 committed
358
 * 材质
359 360
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
361
 */
362 363
@property (nonatomic, strong) NSArray<DataDict> *material;
/**
曹云霄's avatar
曹云霄 committed
364
 * 价格
365 366
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
367
 */
368
@property (nonatomic, strong) NSArray<DataDict> *price;
曹云霄's avatar
曹云霄 committed
369 370 371 372 373 374 375 376 377 378 379
@end /* interface GoodsFilter */

#endif


#ifndef DEF_OrderBill_H
#define DEF_OrderBill_H

/**
 *  @author Flash
 @since 0.1
380
 
曹云霄's avatar
曹云霄 committed
381 382
 */
@interface OrderBill : JSONModel
383
/**
曹云霄's avatar
曹云霄 committed
384
 * (no documentation provided)
385 386
 *
 *
曹云霄's avatar
曹云霄 committed
387 388
 */
@property (nonatomic, strong) DataPage *datapage;
389
/**
曹云霄's avatar
曹云霄 committed
390
 * (no documentation provided)
391 392
 *
 *
曹云霄's avatar
曹云霄 committed
393 394
 */
@property (nonatomic, strong) TOOrderEntity *order;
395
/**
曹云霄's avatar
曹云霄 committed
396 397
 * (no documentation provided)
 * @see TOOrderdetailEntity
398
 *
曹云霄's avatar
曹云霄 committed
399 400
 */
@property (nonatomic, strong) NSArray<TOOrderdetailEntity> *orderdetailList;
401 402 403 404 405 406 407 408 409 410 411 412
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TOConsumerEntity *consumer;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TOEmployee *employee;
曹云霄's avatar
曹云霄 committed
413 414 415 416
@end /* interface OrderBill */

#endif

417

曹云霄's avatar
曹云霄 committed
418 419 420 421 422 423
#ifndef DEF_SceneCondition_H
#define DEF_SceneCondition_H

/**
 *  @author Administrator
 @since 0.1
424
 
曹云霄's avatar
曹云霄 committed
425 426
 */
@interface SceneCondition : JSONModel
427
/**
曹云霄's avatar
曹云霄 committed
428
 * 查询条件:风格
429 430
 *
 *
曹云霄's avatar
曹云霄 committed
431 432
 */
@property (nonatomic, copy) NSString *styleEquals;
433
/**
曹云霄's avatar
曹云霄 committed
434
 * 查询条件:空间
435 436
 *
 *
曹云霄's avatar
曹云霄 committed
437 438
 */
@property (nonatomic, copy) NSString *spaceEquals;
439
/**
曹云霄's avatar
曹云霄 committed
440
 * (no documentation provided)
441 442
 *
 *
曹云霄's avatar
曹云霄 committed
443 444 445 446 447 448
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface SceneCondition */

#endif

449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475

#ifndef DEF_SceneFilter_H
#define DEF_SceneFilter_H

/**
 *  @author Administrator
 @since 0.1
 
 */
@interface SceneFilter : JSONModel
/**
 * (no documentation provided)
 * @see NSString
 *
 */
@property (nonatomic, strong) NSArray *styles;
/**
 * (no documentation provided)
 * @see NSString
 *
 */
@property (nonatomic, strong) NSArray *space;
@end /* interface SceneFilter */

#endif


曹云霄's avatar
曹云霄 committed
476 477 478 479 480 481 482 483 484
#ifndef DEF_TOConsumerEntity_H
#define DEF_TOConsumerEntity_H

/**
 *  @Title: Entity
 @Description: 客户
 @author onlineGenerator
 @date 2016-05-08 18:08:58
 @version V1.0
485 486
 
 
曹云霄's avatar
曹云霄 committed
487 488
 */
@interface TOConsumerEntity : JSONModel
489
/**
曹云霄's avatar
曹云霄 committed
490
 * 方法: 取得java.lang.String
491 492
 *
 *
曹云霄's avatar
曹云霄 committed
493 494
 */
@property (nonatomic, copy) NSString *fid;
495
/**
曹云霄's avatar
曹云霄 committed
496
 * 方法: 取得java.lang.String
497 498
 *
 *
曹云霄's avatar
曹云霄 committed
499 500
 */
@property (nonatomic, copy) NSString *createName;
501
/**
曹云霄's avatar
曹云霄 committed
502
 * 方法: 取得java.lang.String
503 504
 *
 *
曹云霄's avatar
曹云霄 committed
505 506
 */
@property (nonatomic, copy) NSString *createBy;
507
/**
曹云霄's avatar
曹云霄 committed
508
 * 方法: 取得java.util.Date
509 510
 *
 *
曹云霄's avatar
曹云霄 committed
511 512
 */
@property (nonatomic, strong) NSDate *createDate;
513
/**
曹云霄's avatar
曹云霄 committed
514
 * 方法: 取得java.lang.String
515 516
 *
 *
曹云霄's avatar
曹云霄 committed
517 518
 */
@property (nonatomic, copy) NSString *sysOrgCode;
519
/**
曹云霄's avatar
曹云霄 committed
520
 * 方法: 取得java.lang.String
521 522
 *
 *
曹云霄's avatar
曹云霄 committed
523 524
 */
@property (nonatomic, copy) NSString *name;
525
/**
曹云霄's avatar
曹云霄 committed
526
 * 方法: 取得java.lang.String
527 528
 *
 *
曹云霄's avatar
曹云霄 committed
529 530
 */
@property (nonatomic, copy) NSString *mobile;
531
/**
曹云霄's avatar
曹云霄 committed
532
 * 方法: 取得java.lang.String
533 534
 *
 *
曹云霄's avatar
曹云霄 committed
535 536
 */
@property (nonatomic, copy) NSString *province;
537
/**
曹云霄's avatar
曹云霄 committed
538
 * 方法: 取得java.lang.String
539 540
 *
 *
曹云霄's avatar
曹云霄 committed
541 542
 */
@property (nonatomic, copy) NSString *city;
543
/**
曹云霄's avatar
曹云霄 committed
544
 * 方法: 取得java.lang.String
545 546
 *
 *
曹云霄's avatar
曹云霄 committed
547 548
 */
@property (nonatomic, copy) NSString *country;
549
/**
曹云霄's avatar
曹云霄 committed
550
 * 方法: 取得java.lang.String
551 552
 *
 *
曹云霄's avatar
曹云霄 committed
553 554
 */
@property (nonatomic, copy) NSString *address;
555
/**
曹云霄's avatar
曹云霄 committed
556
 * 方法: 取得java.lang.String
557 558
 *
 *
曹云霄's avatar
曹云霄 committed
559 560
 */
@property (nonatomic, copy) NSString *picture;
561
/**
曹云霄's avatar
曹云霄 committed
562
 * 方法: 取得java.util.Date
563 564
 *
 *
曹云霄's avatar
曹云霄 committed
565 566 567 568 569 570
 */
@property (nonatomic, strong) NSDate *lastVisitedTime;
@end /* interface TOConsumerEntity */

#endif

571 572 573

#ifndef DEF_TOGoodsBrandEntity_H
#define DEF_TOGoodsBrandEntity_H
曹云霄's avatar
曹云霄 committed
574 575

/**
576 577
 *  @Title: Entity
 @Description: 商品品牌
曹云霄's avatar
曹云霄 committed
578
 @author onlineGenerator
579 580 581 582
 @date 2016-05-05 16:14:51
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
583
 */
584 585
@interface TOGoodsBrandEntity : JSONModel
/**
曹云霄's avatar
曹云霄 committed
586
 * 方法: 取得java.lang.String
587 588
 *
 *
曹云霄's avatar
曹云霄 committed
589 590
 */
@property (nonatomic, copy) NSString *fid;
591
/**
曹云霄's avatar
曹云霄 committed
592
 * 方法: 取得java.lang.String
593 594
 *
 *
曹云霄's avatar
曹云霄 committed
595
 */
596
@property (nonatomic, copy) NSString *createName;
曹云霄's avatar
曹云霄 committed
597 598
/**
 * 方法: 取得java.lang.String
599 600
 *
 *
曹云霄's avatar
曹云霄 committed
601
 */
602 603 604 605 606
@property (nonatomic, copy) NSString *createBy;
/**
 * 方法: 取得java.util.Date
 *
 *
曹云霄's avatar
曹云霄 committed
607
 */
608 609
@property (nonatomic, strong) NSDate *createDate;
/**
曹云霄's avatar
曹云霄 committed
610
 * 方法: 取得java.lang.String
611 612
 *
 *
曹云霄's avatar
曹云霄 committed
613
 */
614 615
@property (nonatomic, copy) NSString *sysOrgCode;
/**
曹云霄's avatar
曹云霄 committed
616
 * 方法: 取得java.lang.String
617 618
 *
 *
曹云霄's avatar
曹云霄 committed
619
 */
620 621
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
曹云霄's avatar
曹云霄 committed
622
 * 方法: 取得java.lang.String
623 624
 *
 *
曹云霄's avatar
曹云霄 committed
625
 */
626 627
@property (nonatomic, copy) NSString *code;
/**
曹云霄's avatar
曹云霄 committed
628
 * 方法: 取得java.lang.String
629 630
 *
 *
曹云霄's avatar
曹云霄 committed
631
 */
632 633 634 635 636
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.lang.Integer
 *
 *
曹云霄's avatar
曹云霄 committed
637
 */
638 639
@property (nonatomic, assign) int state;
/**
曹云霄's avatar
曹云霄 committed
640
 * 方法: 取得java.lang.String
641 642
 *
 *
曹云霄's avatar
曹云霄 committed
643
 */
644 645 646 647 648
@property (nonatomic, copy) NSString *logo;
/**
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
649
 */
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
@property (nonatomic, copy) NSString *fdescription;
@end /* interface TOGoodsBrandEntity */

#endif


#ifndef DEF_TOGoodsLabelEntity_H
#define DEF_TOGoodsLabelEntity_H

/**
 *  @Title: Entity
 @Description: 商品标签
 @author onlineGenerator
 @date 2016-05-05 17:18:15
 @version V1.0
 
 
 */
@interface TOGoodsLabelEntity : JSONModel
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sysOrgCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *categoryId;
@end /* interface TOGoodsLabelEntity */

#endif


#ifndef DEF_TOHottagEntity_H
#define DEF_TOHottagEntity_H

/**
 *  @Title: Entity
 @Description: 热门推荐
 @author onlineGenerator
 @date 2016-05-06 16:36:36
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
715
 */
716 717 718 719 720 721 722 723
@interface TOHottagEntity : JSONModel
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
曹云霄's avatar
曹云霄 committed
724
 * 方法: 取得java.lang.String
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
 *
 *
 */
@property (nonatomic, copy) NSString *name;
@end /* interface TOHottagEntity */

#endif


#ifndef DEF_TOOrderdetailEntity_H
#define DEF_TOOrderdetailEntity_H

/**
 *  @Title: Entity
 @Description: 订单详情
 @author onlineGenerator
 @date 2016-05-06 12:53:09
 @version V1.0
 
 
 */
@interface TOOrderdetailEntity : JSONModel
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsId;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsName;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsCover;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsSpec;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsBrand;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsNum;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *goodsPrice;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *goodsTotalPrice;
/**
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
811 812
 */
@property (nonatomic, copy) NSString *orderId;
813 814 815 816 817 818
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *remark;
曹云霄's avatar
曹云霄 committed
819 820 821 822
@end /* interface TOOrderdetailEntity */

#endif

823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883

#ifndef DEF_TOSceneEntity_H
#define DEF_TOSceneEntity_H

/**
 *  @Title: Entity
 @Description: 场景
 @author onlineGenerator
 @date 2016-05-05 18:39:39
 @version V1.0
 
 
 */
@interface TOSceneEntity : JSONModel
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sceneCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *pricure;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *category;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *style;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *space;
@end /* interface TOSceneEntity */

#endif


曹云霄's avatar
曹云霄 committed
884 885 886 887
#ifndef DEF_TOShopcartEntity_H
#define DEF_TOShopcartEntity_H

/**
888
 *
曹云霄's avatar
曹云霄 committed
889 890 891 892
 @Title: Entity
 @Description: 购物车
 @author onlineGenerator
 @date 2016-05-05 16:13:38
893 894 895
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
896 897
 */
@interface TOShopcartEntity : JSONModel
898
/**
曹云霄's avatar
曹云霄 committed
899
 * 方法: 取得java.lang.String
900 901
 *
 *
曹云霄's avatar
曹云霄 committed
902 903
 */
@property (nonatomic, copy) NSString *fid;
904
/**
曹云霄's avatar
曹云霄 committed
905
 * 方法: 取得java.lang.String
906 907
 *
 *
曹云霄's avatar
曹云霄 committed
908 909
 */
@property (nonatomic, copy) NSString *createName;
910
/**
曹云霄's avatar
曹云霄 committed
911
 * 方法: 取得java.lang.String
912 913
 *
 *
曹云霄's avatar
曹云霄 committed
914 915
 */
@property (nonatomic, copy) NSString *createBy;
916
/**
曹云霄's avatar
曹云霄 committed
917
 * 方法: 取得java.util.Date
918 919
 *
 *
曹云霄's avatar
曹云霄 committed
920 921
 */
@property (nonatomic, strong) NSDate *createDate;
922
/**
曹云霄's avatar
曹云霄 committed
923
 * 方法: 取得java.lang.String
924 925
 *
 *
曹云霄's avatar
曹云霄 committed
926 927
 */
@property (nonatomic, copy) NSString *updateName;
928
/**
曹云霄's avatar
曹云霄 committed
929
 * 方法: 取得java.lang.String
930 931
 *
 *
曹云霄's avatar
曹云霄 committed
932 933
 */
@property (nonatomic, copy) NSString *updateBy;
934
/**
曹云霄's avatar
曹云霄 committed
935
 * 方法: 取得java.util.Date
936 937
 *
 *
曹云霄's avatar
曹云霄 committed
938 939
 */
@property (nonatomic, strong) NSDate *updateDate;
940
/**
曹云霄's avatar
曹云霄 committed
941
 * 方法: 取得java.lang.String
942 943
 *
 *
曹云霄's avatar
曹云霄 committed
944 945
 */
@property (nonatomic, copy) NSString *sysOrgCode;
946
/**
曹云霄's avatar
曹云霄 committed
947
 * 方法: 取得java.lang.String
948 949
 *
 *
曹云霄's avatar
曹云霄 committed
950 951
 */
@property (nonatomic, copy) NSString *goodsId;
952
/**
曹云霄's avatar
曹云霄 committed
953
 * 方法: 取得java.lang.String
954 955
 *
 *
曹云霄's avatar
曹云霄 committed
956 957
 */
@property (nonatomic, copy) NSString *goodsCode;
958
/**
曹云霄's avatar
曹云霄 committed
959
 * 方法: 取得java.lang.String
960 961
 *
 *
曹云霄's avatar
曹云霄 committed
962 963
 */
@property (nonatomic, copy) NSString *goodsName;
964
/**
曹云霄's avatar
曹云霄 committed
965
 * 方法: 取得java.lang.String
966 967
 *
 *
曹云霄's avatar
曹云霄 committed
968 969
 */
@property (nonatomic, copy) NSString *goodsCover;
970
/**
曹云霄's avatar
曹云霄 committed
971
 * 方法: 取得java.lang.String
972 973
 *
 *
曹云霄's avatar
曹云霄 committed
974 975
 */
@property (nonatomic, copy) NSString *goodsSpec;
976
/**
曹云霄's avatar
曹云霄 committed
977
 * 方法: 取得java.lang.String
978 979
 *
 *
曹云霄's avatar
曹云霄 committed
980 981
 */
@property (nonatomic, copy) NSString *goodsBrand;
982
/**
曹云霄's avatar
曹云霄 committed
983
 * 方法: 取得java.math.BigDecimal
984 985
 *
 *
曹云霄's avatar
曹云霄 committed
986
 */
987 988
@property (nonatomic, strong) NSNumber *goodsSellerPrice;
/**
曹云霄's avatar
曹云霄 committed
989
 * 方法: 取得java.lang.String
990 991
 *
 *
曹云霄's avatar
曹云霄 committed
992 993
 */
@property (nonatomic, copy) NSString *goodsNum;
994
/**
曹云霄's avatar
曹云霄 committed
995
 * 方法: 取得java.math.BigDecimal
996 997
 *
 *
曹云霄's avatar
曹云霄 committed
998
 */
999 1000
@property (nonatomic, strong) NSNumber *goodsPrice;
/**
曹云霄's avatar
曹云霄 committed
1001
 * 方法: 取得java.math.BigDecimal
1002 1003
 *
 *
曹云霄's avatar
曹云霄 committed
1004
 */
1005 1006
@property (nonatomic, strong) NSNumber *goodsTotalPrice;
/**
曹云霄's avatar
曹云霄 committed
1007
 * 方法: 取得java.lang.String
1008 1009
 *
 *
曹云霄's avatar
曹云霄 committed
1010 1011 1012 1013 1014 1015
 */
@property (nonatomic, copy) NSString *consumerId;
@end /* interface TOShopcartEntity */

#endif

1016

曹云霄's avatar
曹云霄 committed
1017 1018 1019 1020 1021 1022 1023
#ifndef DEF_IdEntity_H
#define DEF_IdEntity_H

/**
 * (no documentation provided)
 */
@interface IdEntity : JSONModel
1024
/**
曹云霄's avatar
曹云霄 committed
1025
 * (no documentation provided)
1026 1027
 *
 *
曹云霄's avatar
曹云霄 committed
1028 1029 1030 1031 1032 1033
 */
@property (nonatomic, copy) NSString *fid;
@end /* interface IdEntity */

#endif

1034 1035 1036

#ifndef DEF_TOShippingAddrEntity_H
#define DEF_TOShippingAddrEntity_H
曹云霄's avatar
曹云霄 committed
1037 1038

/**
1039
 *
曹云霄's avatar
曹云霄 committed
1040
 @Title: Entity
1041
 @Description: 收货地址
曹云霄's avatar
曹云霄 committed
1042
 @author onlineGenerator
1043 1044 1045 1046
 @date 2016-05-05 14:42:23
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
1047
 */
1048 1049
@interface TOShippingAddrEntity : JSONModel
/**
曹云霄's avatar
曹云霄 committed
1050
 * 方法: 取得java.lang.String
1051 1052
 *
 *
曹云霄's avatar
曹云霄 committed
1053 1054
 */
@property (nonatomic, copy) NSString *fid;
1055 1056 1057 1058 1059 1060 1061
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, strong) NSDate *createDate;
/**
曹云霄's avatar
曹云霄 committed
1062
 * 方法: 取得java.lang.String
1063 1064
 *
 *
曹云霄's avatar
曹云霄 committed
1065
 */
1066 1067
@property (nonatomic, copy) NSString *sysOrgCode;
/**
曹云霄's avatar
曹云霄 committed
1068
 * 方法: 取得java.lang.String
1069 1070
 *
 *
曹云霄's avatar
曹云霄 committed
1071 1072
 */
@property (nonatomic, copy) NSString *name;
1073
/**
曹云霄's avatar
曹云霄 committed
1074
 * 方法: 取得java.lang.String
1075 1076
 *
 *
曹云霄's avatar
曹云霄 committed
1077
 */
1078 1079
@property (nonatomic, copy) NSString *miblephone;
/**
曹云霄's avatar
曹云霄 committed
1080
 * 方法: 取得java.lang.String
1081 1082
 *
 *
曹云霄's avatar
曹云霄 committed
1083
 */
1084 1085
@property (nonatomic, copy) NSString *province;
/**
曹云霄's avatar
曹云霄 committed
1086
 * 方法: 取得java.lang.String
1087 1088
 *
 *
曹云霄's avatar
曹云霄 committed
1089
 */
1090 1091
@property (nonatomic, copy) NSString *city;
/**
曹云霄's avatar
曹云霄 committed
1092
 * 方法: 取得java.lang.String
1093 1094
 *
 *
曹云霄's avatar
曹云霄 committed
1095
 */
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
@property (nonatomic, copy) NSString *country;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *address;
/**
 * 方法: 取得java.lang.Integer
 *
 *
 */
@property (nonatomic, assign) int state;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *consumerId;
@end /* interface TOShippingAddrEntity */
曹云霄's avatar
曹云霄 committed
1116 1117 1118

#endif

1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167

#ifndef DEF_TOPositionEntity_H
#define DEF_TOPositionEntity_H

/**
 *  @Title: Entity
 @Description: 经销商员工职位
 @author onlineGenerator
 @date 2016-05-02 17:39:21
 @version V1.0
 
 
 */
@interface TOPositionEntity : JSONModel
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *code;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *commission;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *resellerCode;
@end /* interface TOPositionEntity */

#endif


曹云霄's avatar
曹云霄 committed
1168 1169 1170 1171 1172 1173 1174 1175 1176
#ifndef DEF_TOOrderEntity_H
#define DEF_TOOrderEntity_H

/**
 *  @Title: Entity
 @Description: 订单
 @author onlineGenerator
 @date 2016-05-06 12:53:09
 @version V1.0
1177 1178
 
 
曹云霄's avatar
曹云霄 committed
1179 1180
 */
@interface TOOrderEntity : JSONModel
1181
/**
曹云霄's avatar
曹云霄 committed
1182
 * 方法: 取得java.lang.String
1183 1184
 *
 *
曹云霄's avatar
曹云霄 committed
1185 1186
 */
@property (nonatomic, copy) NSString *fid;
1187
/**
曹云霄's avatar
曹云霄 committed
1188
 * 方法: 取得java.lang.String
1189 1190
 *
 *
曹云霄's avatar
曹云霄 committed
1191 1192
 */
@property (nonatomic, copy) NSString *createName;
1193
/**
曹云霄's avatar
曹云霄 committed
1194
 * 方法: 取得java.lang.String
1195 1196
 *
 *
曹云霄's avatar
曹云霄 committed
1197 1198
 */
@property (nonatomic, copy) NSString *createBy;
1199
/**
曹云霄's avatar
曹云霄 committed
1200
 * 方法: 取得java.util.Date
1201 1202
 *
 *
曹云霄's avatar
曹云霄 committed
1203 1204
 */
@property (nonatomic, strong) NSDate *createDate;
1205
/**
曹云霄's avatar
曹云霄 committed
1206
 * 方法: 取得java.lang.String
1207 1208
 *
 *
曹云霄's avatar
曹云霄 committed
1209 1210
 */
@property (nonatomic, copy) NSString *updateName;
1211
/**
曹云霄's avatar
曹云霄 committed
1212
 * 方法: 取得java.lang.String
1213 1214
 *
 *
曹云霄's avatar
曹云霄 committed
1215 1216
 */
@property (nonatomic, copy) NSString *updateBy;
1217
/**
曹云霄's avatar
曹云霄 committed
1218
 * 方法: 取得java.util.Date
1219 1220
 *
 *
曹云霄's avatar
曹云霄 committed
1221 1222
 */
@property (nonatomic, strong) NSDate *updateDate;
1223
/**
曹云霄's avatar
曹云霄 committed
1224
 * 方法: 取得java.lang.String
1225 1226
 *
 *
曹云霄's avatar
曹云霄 committed
1227 1228
 */
@property (nonatomic, copy) NSString *sysOrgCode;
1229
/**
曹云霄's avatar
曹云霄 committed
1230
 * 方法: 取得java.lang.String
1231 1232
 *
 *
曹云霄's avatar
曹云霄 committed
1233 1234
 */
@property (nonatomic, copy) NSString *orderNumber;
1235
/**
曹云霄's avatar
曹云霄 committed
1236
 * 方法: 取得java.util.Date
1237 1238
 *
 *
曹云霄's avatar
曹云霄 committed
1239 1240
 */
@property (nonatomic, strong) NSDate *orderTime;
1241
/**
曹云霄's avatar
曹云霄 committed
1242
 * 方法: 取得java.lang.String
1243 1244
 *
 *
曹云霄's avatar
曹云霄 committed
1245 1246
 */
@property (nonatomic, copy) NSString *guideId;
1247
/**
曹云霄's avatar
曹云霄 committed
1248
 * 方法: 取得java.lang.String
1249 1250
 *
 *
曹云霄's avatar
曹云霄 committed
1251 1252
 */
@property (nonatomic, copy) NSString *orderState;
1253
/**
曹云霄's avatar
曹云霄 committed
1254
 * 方法: 取得java.lang.String
1255 1256
 *
 *
曹云霄's avatar
曹云霄 committed
1257 1258
 */
@property (nonatomic, copy) NSString *consumerId;
1259
/**
曹云霄's avatar
曹云霄 committed
1260
 * 方法: 取得java.lang.String
1261 1262
 *
 *
曹云霄's avatar
曹云霄 committed
1263 1264
 */
@property (nonatomic, copy) NSString *goodsNum;
1265
/**
曹云霄's avatar
曹云霄 committed
1266
 * 方法: 取得java.math.BigDecimal
1267 1268
 *
 *
曹云霄's avatar
曹云霄 committed
1269
 */
1270 1271
@property (nonatomic, strong) NSNumber *orderPrice;
/**
曹云霄's avatar
曹云霄 committed
1272
 * 方法: 取得java.lang.String
1273 1274
 *
 *
曹云霄's avatar
曹云霄 committed
1275 1276
 */
@property (nonatomic, copy) NSString *receiverName;
1277
/**
曹云霄's avatar
曹云霄 committed
1278
 * 方法: 取得java.lang.String
1279 1280
 *
 *
曹云霄's avatar
曹云霄 committed
1281 1282
 */
@property (nonatomic, copy) NSString *receiverMobile;
1283
/**
曹云霄's avatar
曹云霄 committed
1284
 * 方法: 取得java.lang.String
1285 1286
 *
 *
曹云霄's avatar
曹云霄 committed
1287 1288
 */
@property (nonatomic, copy) NSString *receiverAddress;
1289
/**
曹云霄's avatar
曹云霄 committed
1290
 * 方法: 取得java.lang.String
1291 1292
 *
 *
曹云霄's avatar
曹云霄 committed
1293 1294
 */
@property (nonatomic, copy) NSString *isBill;
1295
/**
曹云霄's avatar
曹云霄 committed
1296
 * 方法: 取得java.lang.String
1297 1298
 *
 *
曹云霄's avatar
曹云霄 committed
1299 1300
 */
@property (nonatomic, copy) NSString *billType;
1301
/**
曹云霄's avatar
曹云霄 committed
1302
 * 方法: 取得java.lang.String
1303 1304
 *
 *
曹云霄's avatar
曹云霄 committed
1305 1306
 */
@property (nonatomic, copy) NSString *billTitle;
1307
/**
曹云霄's avatar
曹云霄 committed
1308
 * 方法: 取得java.lang.String
1309 1310
 *
 *
曹云霄's avatar
曹云霄 committed
1311 1312 1313 1314 1315 1316
 */
@property (nonatomic, copy) NSString *payType;
@end /* interface TOOrderEntity */

#endif

1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413

#ifndef DEF_TOGoodsLabelCategoryEntity_H
#define DEF_TOGoodsLabelCategoryEntity_H

/**
 *  @Title: Entity
 @Description: 商品标签分类
 @author onlineGenerator
 @date 2016-05-05 16:57:27
 @version V1.0
 
 
 */
@interface TOGoodsLabelCategoryEntity : JSONModel
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sysOrgCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *code;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *name;
@end /* interface TOGoodsLabelCategoryEntity */

#endif


#ifndef DEF_TOGoodsCategoryEntity_H
#define DEF_TOGoodsCategoryEntity_H

/**
 *  @Title: Entity
 @Description: 商品分类
 @author onlineGenerator
 @date 2016-05-10 10:17:53
 @version V1.0
 
 
 */
@interface TOGoodsCategoryEntity : JSONModel
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *code;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *upperId;
/**
 * 方法: 取得java.lang.Integer
 *
 *
 */
@property (nonatomic, assign) int level;
@end /* interface TOGoodsCategoryEntity */

#endif


曹云霄's avatar
曹云霄 committed
1414 1415 1416 1417
#ifndef DEF_TOGoodsEntity_H
#define DEF_TOGoodsEntity_H

/**
1418
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
1419 1420
 @Description: 商品
 @author onlineGenerator
1421 1422 1423 1424
 @date 2016-05-09 16:14:26
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
1425 1426
 */
@interface TOGoodsEntity : JSONModel
1427
/**
曹云霄's avatar
曹云霄 committed
1428
 * 方法: 取得java.lang.String
1429 1430
 *
 *
曹云霄's avatar
曹云霄 committed
1431 1432
 */
@property (nonatomic, copy) NSString *fid;
1433
/**
曹云霄's avatar
曹云霄 committed
1434
 * 方法: 取得java.util.Date
1435 1436
 *
 *
曹云霄's avatar
曹云霄 committed
1437 1438
 */
@property (nonatomic, strong) NSDate *createDate;
1439
/**
曹云霄's avatar
曹云霄 committed
1440
 * 方法: 取得java.util.Date
1441 1442
 *
 *
曹云霄's avatar
曹云霄 committed
1443 1444
 */
@property (nonatomic, strong) NSDate *onlineTime;
1445
/**
曹云霄's avatar
曹云霄 committed
1446
 * 方法: 取得java.lang.String
1447 1448
 *
 *
曹云霄's avatar
曹云霄 committed
1449 1450
 */
@property (nonatomic, copy) NSString *company;
1451
/**
曹云霄's avatar
曹云霄 committed
1452
 * 方法: 取得java.lang.String
1453 1454
 *
 *
曹云霄's avatar
曹云霄 committed
1455 1456
 */
@property (nonatomic, copy) NSString *code;
1457
/**
曹云霄's avatar
曹云霄 committed
1458
 * 方法: 取得java.lang.String
1459 1460
 *
 *
曹云霄's avatar
曹云霄 committed
1461 1462
 */
@property (nonatomic, copy) NSString *name;
1463
/**
曹云霄's avatar
曹云霄 committed
1464
 * 方法: 取得java.lang.String
1465 1466
 *
 *
曹云霄's avatar
曹云霄 committed
1467 1468
 */
@property (nonatomic, copy) NSString *number;
1469
/**
曹云霄's avatar
曹云霄 committed
1470
 * 方法: 取得java.lang.String
1471 1472
 *
 *
曹云霄's avatar
曹云霄 committed
1473 1474
 */
@property (nonatomic, copy) NSString *categoryId;
1475
/**
曹云霄's avatar
曹云霄 committed
1476
 * 方法: 取得java.lang.String
1477 1478
 *
 *
曹云霄's avatar
曹云霄 committed
1479 1480
 */
@property (nonatomic, copy) NSString *brandId;
1481
/**
曹云霄's avatar
曹云霄 committed
1482
 * 方法: 取得java.lang.String
1483 1484
 *
 *
曹云霄's avatar
曹云霄 committed
1485 1486
 */
@property (nonatomic, copy) NSString *keyword;
1487
/**
曹云霄's avatar
曹云霄 committed
1488
 * 方法: 取得java.math.BigDecimal
1489 1490
 *
 *
曹云霄's avatar
曹云霄 committed
1491
 */
1492 1493
@property (nonatomic, strong) NSNumber *guidePrice;
/**
曹云霄's avatar
曹云霄 committed
1494
 * 方法: 取得java.math.BigDecimal
1495 1496
 *
 *
曹云霄's avatar
曹云霄 committed
1497
 */
1498 1499
@property (nonatomic, strong) NSNumber *tagPrice;
/**
曹云霄's avatar
曹云霄 committed
1500
 * 方法: 取得java.math.BigDecimal
1501 1502
 *
 *
曹云霄's avatar
曹云霄 committed
1503
 */
1504 1505
@property (nonatomic, strong) NSNumber *costPrice;
/**
曹云霄's avatar
曹云霄 committed
1506
 * 方法: 取得java.lang.String
1507 1508
 *
 *
曹云霄's avatar
曹云霄 committed
1509 1510
 */
@property (nonatomic, copy) NSString *state;
1511
/**
曹云霄's avatar
曹云霄 committed
1512
 * 方法: 取得java.math.BigDecimal
1513 1514
 *
 *
曹云霄's avatar
曹云霄 committed
1515
 */
1516 1517
@property (nonatomic, strong) NSNumber *inv;
/**
曹云霄's avatar
曹云霄 committed
1518
 * 方法: 取得java.lang.String
1519 1520
 *
 *
曹云霄's avatar
曹云霄 committed
1521 1522
 */
@property (nonatomic, copy) NSString *detailedIntro;
1523
/**
曹云霄's avatar
曹云霄 committed
1524
 * 方法: 取得java.math.BigDecimal
1525 1526
 *
 *
曹云霄's avatar
曹云霄 committed
1527
 */
1528 1529
@property (nonatomic, strong) NSNumber *weight;
/**
曹云霄's avatar
曹云霄 committed
1530
 * 方法: 取得java.lang.String
1531 1532
 *
 *
曹云霄's avatar
曹云霄 committed
1533 1534
 */
@property (nonatomic, copy) NSString *unit;
1535
/**
曹云霄's avatar
曹云霄 committed
1536
 * 方法: 取得java.lang.String
1537 1538
 *
 *
曹云霄's avatar
曹云霄 committed
1539 1540
 */
@property (nonatomic, copy) NSString *productProfile;
1541
/**
曹云霄's avatar
曹云霄 committed
1542
 * 方法: 取得java.lang.String
1543 1544
 *
 *
曹云霄's avatar
曹云霄 committed
1545 1546
 */
@property (nonatomic, copy) NSString *power;
1547 1548 1549 1550
/**
 * 方法: ���得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
1551 1552
 */
@property (nonatomic, copy) NSString *colorTemperature;
1553
/**
曹云霄's avatar
曹云霄 committed
1554
 * 方法: 取得java.lang.String
1555 1556
 *
 *
曹云霄's avatar
曹云霄 committed
1557 1558
 */
@property (nonatomic, copy) NSString *spec;
1559
/**
曹云霄's avatar
曹云霄 committed
1560
 * 方法: 取得java.lang.String
1561 1562
 *
 *
曹云霄's avatar
曹云霄 committed
1563 1564
 */
@property (nonatomic, copy) NSString *function;
1565
/**
曹云霄's avatar
曹云霄 committed
1566
 * 方法: 取得java.lang.String
1567 1568
 *
 *
曹云霄's avatar
曹云霄 committed
1569 1570
 */
@property (nonatomic, copy) NSString *material;
1571
/**
曹云霄's avatar
曹云霄 committed
1572
 * 方法: 取得java.lang.String
1573 1574
 *
 *
曹云霄's avatar
曹云霄 committed
1575 1576
 */
@property (nonatomic, copy) NSString *lightSource;
1577
/**
曹云霄's avatar
曹云霄 committed
1578
 * 方法: 取得java.lang.String
1579 1580
 *
 *
曹云霄's avatar
曹云霄 committed
1581 1582
 */
@property (nonatomic, copy) NSString *goodsStyle;
1583
/**
曹云霄's avatar
曹云霄 committed
1584
 * 方法: 取得java.lang.String
1585 1586
 *
 *
曹云霄's avatar
曹云霄 committed
1587 1588
 */
@property (nonatomic, copy) NSString *series;
1589
/**
曹云霄's avatar
曹云霄 committed
1590
 * 方法: 取得java.lang.String
1591 1592
 *
 *
曹云霄's avatar
曹云霄 committed
1593 1594
 */
@property (nonatomic, copy) NSString *area;
1595
/**
曹云霄's avatar
曹云霄 committed
1596
 * 方法: 取得java.lang.String
1597 1598
 *
 *
曹云霄's avatar
曹云霄 committed
1599 1600
 */
@property (nonatomic, copy) NSString *size;
1601
/**
曹云霄's avatar
曹云霄 committed
1602
 * 方法: 取得java.lang.String
1603 1604
 *
 *
曹云霄's avatar
曹云霄 committed
1605 1606
 */
@property (nonatomic, copy) NSString *space;
1607
/**
曹云霄's avatar
曹云霄 committed
1608
 * 方法: 取得java.lang.String
1609 1610
 *
 *
曹云霄's avatar
曹云霄 committed
1611 1612
 */
@property (nonatomic, copy) NSString *installMethod;
1613
/**
曹云霄's avatar
曹云霄 committed
1614
 * 方法: 取得java.lang.String
1615 1616
 *
 *
曹云霄's avatar
曹云霄 committed
1617 1618
 */
@property (nonatomic, copy) NSString *lightNumber;
1619
/**
曹云霄's avatar
曹云霄 committed
1620
 * 方法: 取得java.lang.String
1621 1622
 *
 *
曹云霄's avatar
曹云霄 committed
1623 1624
 */
@property (nonatomic, copy) NSString *pictures;
1625 1626 1627 1628 1629 1630
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *barcode;
曹云霄's avatar
曹云霄 committed
1631 1632 1633 1634
@end /* interface TOGoodsEntity */

#endif

1635 1636 1637

#ifndef DEF_HotTagResponse_H
#define DEF_HotTagResponse_H
曹云霄's avatar
曹云霄 committed
1638 1639

/**
1640
 *  @author Administrator
曹云霄's avatar
曹云霄 committed
1641
 @since 0.1
1642
 
曹云霄's avatar
曹云霄 committed
1643
 */
1644 1645 1646 1647 1648
@interface HotTagResponse : JSONModel
/**
 * (no documentation provided)
 * @see TOHottagEntity
 *
曹云霄's avatar
曹云霄 committed
1649
 */
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662
@property (nonatomic, strong) NSArray<TOHottagEntity> *list;
@end /* interface HotTagResponse */

#endif


#ifndef DEF_GoodsCategory_H
#define DEF_GoodsCategory_H

/**
 *  @author Debenson
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
1663
 */
1664 1665 1666 1667 1668
@interface GoodsCategory : JSONModel
/**
 * 分类id
 *
 *
曹云霄's avatar
曹云霄 committed
1669
 */
1670 1671 1672 1673 1674
@property (nonatomic, copy) NSString *fid;
/**
 * 分类名称
 *
 *
曹云霄's avatar
曹云霄 committed
1675
 */
1676 1677 1678 1679 1680
@property (nonatomic, copy) NSString *name;
/**
 * 下级分类列表
 * @see GoodsCategory
 *
曹云霄's avatar
曹云霄 committed
1681
 */
1682 1683
@property (nonatomic, strong) NSArray<GoodsCategory> *children;
@end /* interface GoodsCategory */
曹云霄's avatar
曹云霄 committed
1684 1685 1686

#endif

1687

曹云霄's avatar
曹云霄 committed
1688 1689 1690 1691 1692 1693 1694 1695
#ifndef DEF_ResetPasswordRequest_H
#define DEF_ResetPasswordRequest_H

/**
 *  重置密码请求。
 
 @author Debenson
 @since 0.1
1696
 
曹云霄's avatar
曹云霄 committed
1697 1698
 */
@interface ResetPasswordRequest : JSONModel
1699
/**
曹云霄's avatar
曹云霄 committed
1700
 * 用户名
1701 1702
 *
 *
曹云霄's avatar
曹云霄 committed
1703 1704
 */
@property (nonatomic, copy) NSString *username;
1705
/**
曹云霄's avatar
曹云霄 committed
1706
 * 短信验证码,请先调用发送短信接口
1707 1708 1709
 * com.gomore.opple.rest.system.RsSystemService#sendSms(String)
 *
 *
曹云霄's avatar
曹云霄 committed
1710 1711
 */
@property (nonatomic, copy) NSString *smsCode;
1712
/**
曹云霄's avatar
曹云霄 committed
1713
 * 新密码
1714 1715
 *
 *
曹云霄's avatar
曹云霄 committed
1716 1717 1718 1719 1720 1721
 */
@property (nonatomic, copy) NSString *fnewPassword;
@end /* interface ResetPasswordRequest */

#endif

1722

曹云霄's avatar
曹云霄 committed
1723 1724 1725 1726 1727 1728 1729 1730
#ifndef DEF_LoginResult_H
#define DEF_LoginResult_H

/**
 *  登录结果。
 
 @author Debenson
 @since 0.1
1731
 
曹云霄's avatar
曹云霄 committed
1732 1733
 */
@interface LoginResult : JSONModel
1734
/**
曹云霄's avatar
曹云霄 committed
1735
 * 员工
1736 1737
 *
 *
曹云霄's avatar
曹云霄 committed
1738 1739
 */
@property (nonatomic, strong) TOEmployee *employee;
1740
/**
曹云霄's avatar
曹云霄 committed
1741
 * 分成比例
1742 1743
 *
 *
曹云霄's avatar
曹云霄 committed
1744
 */
1745
@property (nonatomic, strong) NSNumber *commission;
曹云霄's avatar
曹云霄 committed
1746 1747 1748 1749
@end /* interface LoginResult */

#endif

1750

曹云霄's avatar
曹云霄 committed
1751 1752 1753 1754
#ifndef DEF_ConsumerQueryCondition_H
#define DEF_ConsumerQueryCondition_H

/**
1755 1756 1757
 *  客户查询条件。
 
 @author Debenson
曹云霄's avatar
曹云霄 committed
1758
 @since 0.1
1759
 
曹云霄's avatar
曹云霄 committed
1760 1761
 */
@interface ConsumerQueryCondition : JSONModel
1762
/**
曹云霄's avatar
曹云霄 committed
1763
 * 名称等于
1764 1765
 *
 *
曹云霄's avatar
曹云霄 committed
1766 1767
 */
@property (nonatomic, copy) NSString *nameEquals;
1768
/**
曹云霄's avatar
曹云霄 committed
1769
 * 手机号等于
1770 1771
 *
 *
曹云霄's avatar
曹云霄 committed
1772 1773
 */
@property (nonatomic, copy) NSString *mobileEquals;
1774
/**
曹云霄's avatar
曹云霄 committed
1775
 * 分布查询条件, 可空
1776 1777
 *
 *
曹云霄's avatar
曹云霄 committed
1778 1779 1780 1781 1782 1783
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface ConsumerQueryCondition */

#endif

1784

曹云霄's avatar
曹云霄 committed
1785 1786 1787 1788 1789 1790 1791 1792
#ifndef DEF_ExceptionCode_H
#define DEF_ExceptionCode_H

/**
 *  异常代码。
 
 @author Debenson
 @since 0.1
1793
 
曹云霄's avatar
曹云霄 committed
1794 1795
 */
@interface ExceptionCode : JSONModel
1796
/**
曹云霄's avatar
曹云霄 committed
1797
 * 异常代码
1798 1799
 *
 *
曹云霄's avatar
曹云霄 committed
1800 1801
 */
@property (nonatomic, assign) int code;
1802
/**
曹云霄's avatar
曹云霄 committed
1803
 * 异常信息
1804 1805
 *
 *
曹云霄's avatar
曹云霄 committed
1806 1807 1808 1809 1810 1811
 */
@property (nonatomic, copy) NSString *message;
@end /* interface ExceptionCode */

#endif

1812

曹云霄's avatar
曹云霄 committed
1813 1814 1815 1816 1817 1818 1819 1820
#ifndef DEF_DataPage_H
#define DEF_DataPage_H

/**
 *  easyui的datagrid向后台传递参数使用的model
 
 @author
 
1821
 
曹云霄's avatar
曹云霄 committed
1822 1823
 */
@interface DataPage : JSONModel
1824
/**
曹云霄's avatar
曹云霄 committed
1825
 * (no documentation provided)
1826 1827
 *
 *
曹云霄's avatar
曹云霄 committed
1828 1829
 */
@property (nonatomic, assign) int total;
1830
/**
曹云霄's avatar
曹云霄 committed
1831
 * (no documentation provided)
1832 1833
 *
 *
曹云霄's avatar
曹云霄 committed
1834 1835
 */
@property (nonatomic, assign) int page;
1836
/**
曹云霄's avatar
曹云霄 committed
1837
 * (no documentation provided)
1838 1839
 *
 *
曹云霄's avatar
曹云霄 committed
1840 1841
 */
@property (nonatomic, assign) int rows;
1842
/**
曹云霄's avatar
曹云霄 committed
1843
 * (no documentation provided)
1844 1845
 *
 *
曹云霄's avatar
曹云霄 committed
1846 1847
 */
@property (nonatomic, copy) NSString *sort;
1848
/**
曹云霄's avatar
曹云霄 committed
1849
 * (no documentation provided)
1850 1851
 *
 * 取值: SORTDIRECTION_ASC, SORTDIRECTION_DESC,
曹云霄's avatar
曹云霄 committed
1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864
 */
@property (nonatomic, copy) NSString *order;
@end /* interface DataPage */

#endif


#ifndef DEF_SceneResponse_H
#define DEF_SceneResponse_H

/**
 *  @author Administrator
 @since 0.1
1865
 
曹云霄's avatar
曹云霄 committed
1866 1867 1868 1869 1870
 */
@interface SceneResponse : PageRows
/**
 * (no documentation provided)
 * @see TOSceneEntity
1871
 *
曹云霄's avatar
曹云霄 committed
1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884
 */
@property (nonatomic, strong) NSArray<TOSceneEntity> *list;
@end /* interface SceneResponse */

#endif


#ifndef DEF_TSBaseUser_H
#define DEF_TSBaseUser_H

/**
 *  系统用户父类表
 @author  张代浩
1885
 
曹云霄's avatar
曹云霄 committed
1886 1887
 */
@interface TSBaseUser : IdEntity
1888
/**
曹云霄's avatar
曹云霄 committed
1889
 * (no documentation provided)
1890 1891
 *
 *
曹云霄's avatar
曹云霄 committed
1892 1893
 */
@property (nonatomic, copy) NSString *departid;
1894
/**
曹云霄's avatar
曹云霄 committed
1895
 * (no documentation provided)
1896 1897
 *
 *
曹云霄's avatar
曹云霄 committed
1898 1899
 */
@property (nonatomic, strong) NSData *signature;
1900
/**
曹云霄's avatar
曹云霄 committed
1901
 * (no documentation provided)
1902 1903
 *
 *
曹云霄's avatar
曹云霄 committed
1904 1905
 */
@property (nonatomic, copy) NSString *browser;
1906
/**
曹云霄's avatar
曹云霄 committed
1907
 * (no documentation provided)
1908 1909
 *
 *
曹云霄's avatar
曹云霄 committed
1910 1911
 */
@property (nonatomic, copy) NSString *userKey;
1912
/**
曹云霄's avatar
曹云霄 committed
1913
 * (no documentation provided)
1914 1915
 *
 *
曹云霄's avatar
曹云霄 committed
1916 1917
 */
@property (nonatomic, assign) short status;
1918
/**
曹云霄's avatar
曹云霄 committed
1919
 * (no documentation provided)
1920 1921
 *
 *
曹云霄's avatar
曹云霄 committed
1922 1923
 */
@property (nonatomic, assign) short activitiSync;
1924
/**
曹云霄's avatar
曹云霄 committed
1925
 * (no documentation provided)
1926 1927
 *
 *
曹云霄's avatar
曹云霄 committed
1928 1929
 */
@property (nonatomic, copy) NSString *password;
1930
/**
曹云霄's avatar
曹云霄 committed
1931
 * (no documentation provided)
1932 1933
 *
 *
曹云霄's avatar
曹云霄 committed
1934 1935
 */
@property (nonatomic, copy) NSString *userName;
1936
/**
曹云霄's avatar
曹云霄 committed
1937
 * (no documentation provided)
1938 1939
 *
 *
曹云霄's avatar
曹云霄 committed
1940 1941
 */
@property (nonatomic, copy) NSString *realName;
1942
/**
曹云霄's avatar
曹云霄 committed
1943
 * (no documentation provided)
1944 1945
 *
 *
曹云霄's avatar
曹云霄 committed
1946 1947
 */
@property (nonatomic, strong) TSDepart *currentDepart;
1948
/**
曹云霄's avatar
曹云霄 committed
1949 1950
 * (no documentation provided)
 * @see TSUserOrg
1951
 *
曹云霄's avatar
曹云霄 committed
1952 1953 1954 1955 1956 1957
 */
@property (nonatomic, strong) NSArray<TSUserOrg> *userOrgList;
@end /* interface TSBaseUser */

#endif

1958

曹云霄's avatar
曹云霄 committed
1959 1960 1961 1962 1963 1964
#ifndef DEF_TSDepart_H
#define DEF_TSDepart_H

/**
 *  部门机构表
 @author  张代浩
1965
 
曹云霄's avatar
曹云霄 committed
1966 1967
 */
@interface TSDepart : IdEntity
1968
/**
曹云霄's avatar
曹云霄 committed
1969
 * (no documentation provided)
1970 1971
 *
 *
曹云霄's avatar
曹云霄 committed
1972 1973
 */
@property (nonatomic, strong) TSDepart *TSPDepart;
1974
/**
曹云霄's avatar
曹云霄 committed
1975
 * (no documentation provided)
1976 1977
 *
 *
曹云霄's avatar
曹云霄 committed
1978 1979
 */
@property (nonatomic, copy) NSString *departname;
1980
/**
曹云霄's avatar
曹云霄 committed
1981
 * (no documentation provided)
1982 1983
 *
 *
曹云霄's avatar
曹云霄 committed
1984 1985
 */
@property (nonatomic, copy) NSString *fdescription;
1986
/**
曹云霄's avatar
曹云霄 committed
1987 1988
 * (no documentation provided)
 * @see TSDepart
1989
 *
曹云霄's avatar
曹云霄 committed
1990 1991
 */
@property (nonatomic, strong) NSArray<TSDepart> *TSDeparts;
1992
/**
曹云霄's avatar
曹云霄 committed
1993
 * (no documentation provided)
1994 1995
 *
 *
曹云霄's avatar
曹云霄 committed
1996 1997
 */
@property (nonatomic, copy) NSString *orgCode;
1998
/**
曹云霄's avatar
曹云霄 committed
1999
 * (no documentation provided)
2000 2001
 *
 *
曹云霄's avatar
曹云霄 committed
2002 2003
 */
@property (nonatomic, copy) NSString *orgType;
2004
/**
曹云霄's avatar
曹云霄 committed
2005
 * (no documentation provided)
2006 2007
 *
 *
曹云霄's avatar
曹云霄 committed
2008 2009
 */
@property (nonatomic, copy) NSString *mobile;
2010
/**
曹云霄's avatar
曹云霄 committed
2011
 * (no documentation provided)
2012 2013
 *
 *
曹云霄's avatar
曹云霄 committed
2014 2015
 */
@property (nonatomic, copy) NSString *fax;
2016
/**
曹云霄's avatar
曹云霄 committed
2017
 * (no documentation provided)
2018 2019
 *
 *
曹云霄's avatar
曹云霄 committed
2020 2021 2022 2023 2024 2025
 */
@property (nonatomic, copy) NSString *address;
@end /* interface TSDepart */

#endif

2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078

#ifndef DEF_TSUserOrg_H
#define DEF_TSUserOrg_H

/**
 *  用户-组织机构 实体
 <p/>
 <p><b>User:</b> zhanggm <a href="mailto:guomingzhang2008@gmail.com">guomingzhang2008@gmail.com</a></p>
 <p><b>Date:</b> 2014-08-22 15:39</p>
 
 @author 张国明
 
 */
@interface TSUserOrg : IdEntity
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TSUser *tsUser;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TSDepart *tsDepart;
@end /* interface TSUserOrg */

#endif


#ifndef DEF_ShopCartResponse_H
#define DEF_ShopCartResponse_H

/**
 *  购物车返回对象
 
 @author Flash
 @since 0.1
 
 */
@interface ShopCartResponse : PageRows
/**
 * (no documentation provided)
 * @see TOShopcartEntity
 *
 */
@property (nonatomic, strong) NSArray<TOShopcartEntity> *shopcart;
@end /* interface ShopCartResponse */

#endif


曹云霄's avatar
曹云霄 committed
2079 2080 2081 2082 2083 2084 2085 2086
#ifndef DEF_OrderResponse_H
#define DEF_OrderResponse_H

/**
 *  订单返回对象
 
 @author wsx
 @since 0.1
2087
 
曹云霄's avatar
曹云霄 committed
2088 2089
 */
@interface OrderResponse : PageRows
2090
/**
曹云霄's avatar
曹云霄 committed
2091 2092
 * (no documentation provided)
 * @see OrderBill
2093
 *
曹云霄's avatar
曹云霄 committed
2094 2095 2096 2097 2098 2099
 */
@property (nonatomic, strong) NSArray<OrderBill> *orderBillList;
@end /* interface OrderResponse */

#endif

2100

曹云霄's avatar
曹云霄 committed
2101 2102 2103 2104 2105 2106 2107
#ifndef DEF_GoodsResponse_H
#define DEF_GoodsResponse_H

/**
 *  @author NuoSa
 
 @since 0.1
2108
 
曹云霄's avatar
曹云霄 committed
2109 2110
 */
@interface GoodsResponse : PageRows
2111
/**
曹云霄's avatar
曹云霄 committed
2112 2113
 * 商品列表
 * @see TOGoodsEntity
2114
 *
曹云霄's avatar
曹云霄 committed
2115 2116 2117 2118 2119 2120
 */
@property (nonatomic, strong) NSArray<TOGoodsEntity> *goodsEntity;
@end /* interface GoodsResponse */

#endif

2121

曹云霄's avatar
曹云霄 committed
2122 2123 2124 2125 2126 2127 2128 2129
#ifndef DEF_ConsumerPageResult_H
#define DEF_ConsumerPageResult_H

/**
 *  客户分页查询结果。
 
 @author Debenson
 @since 0.1
2130
 
曹云霄's avatar
曹云霄 committed
2131 2132
 */
@interface ConsumerPageResult : PageRows
2133
/**
曹云霄's avatar
曹云霄 committed
2134 2135
 * 客户列表
 * @see TOConsumerEntity
2136
 *
曹云霄's avatar
曹云霄 committed
2137 2138 2139 2140 2141 2142
 */
@property (nonatomic, strong) NSArray<TOConsumerEntity> *results;
@end /* interface ConsumerPageResult */

#endif

2143

曹云霄's avatar
曹云霄 committed
2144 2145 2146 2147 2148
#ifndef DEF_TSUser_H
#define DEF_TSUser_H

/**
 *  系统用户表
2149 2150
 @author  张代浩
 
曹云霄's avatar
曹云霄 committed
2151 2152
 */
@interface TSUser : TSBaseUser
2153
/**
曹云霄's avatar
曹云霄 committed
2154
 * (no documentation provided)
2155 2156
 *
 *
曹云霄's avatar
曹云霄 committed
2157 2158
 */
@property (nonatomic, copy) NSString *signatureFile;
2159
/**
曹云霄's avatar
曹云霄 committed
2160
 * (no documentation provided)
2161 2162
 *
 *
曹云霄's avatar
曹云霄 committed
2163 2164
 */
@property (nonatomic, copy) NSString *mobilePhone;
2165
/**
曹云霄's avatar
曹云霄 committed
2166
 * (no documentation provided)
2167 2168
 *
 *
曹云霄's avatar
曹云霄 committed
2169 2170
 */
@property (nonatomic, copy) NSString *officePhone;
2171
/**
曹云霄's avatar
曹云霄 committed
2172
 * (no documentation provided)
2173 2174
 *
 *
曹云霄's avatar
曹云霄 committed
2175 2176
 */
@property (nonatomic, copy) NSString *email;
2177
/**
曹云霄's avatar
曹云霄 committed
2178
 * 方法: 取得java.util.Date
2179 2180
 *
 *
曹云霄's avatar
曹云霄 committed
2181 2182
 */
@property (nonatomic, strong) NSDate *createDate;
2183
/**
曹云霄's avatar
曹云霄 committed
2184
 * 方法: 取得java.lang.String
2185 2186
 *
 *
曹云霄's avatar
曹云霄 committed
2187 2188
 */
@property (nonatomic, copy) NSString *createBy;
2189
/**
曹云霄's avatar
曹云霄 committed
2190
 * 方法: 取得java.lang.String
2191 2192
 *
 *
曹云霄's avatar
曹云霄 committed
2193 2194
 */
@property (nonatomic, copy) NSString *createName;
2195
/**
曹云霄's avatar
曹云霄 committed
2196
 * 方法: 取得java.util.Date
2197 2198
 *
 *
曹云霄's avatar
曹云霄 committed
2199 2200
 */
@property (nonatomic, strong) NSDate *updateDate;
2201
/**
曹云霄's avatar
曹云霄 committed
2202
 * 方法: 取得java.lang.String
2203 2204
 *
 *
曹云霄's avatar
曹云霄 committed
2205 2206
 */
@property (nonatomic, copy) NSString *updateBy;
2207
/**
曹云霄's avatar
曹云霄 committed
2208
 * 方法: 取得java.lang.String
2209 2210
 *
 *
曹云霄's avatar
曹云霄 committed
2211 2212 2213 2214 2215 2216
 */
@property (nonatomic, copy) NSString *updateName;
@end /* interface TSUser */

#endif

2217

曹云霄's avatar
曹云霄 committed
2218 2219 2220 2221 2222 2223 2224 2225
#ifndef DEF_TOEmployee_H
#define DEF_TOEmployee_H

/**
 *  经销商员工。
 
 @author Debenson
 @since 0.1
2226
 
曹云霄's avatar
曹云霄 committed
2227 2228
 */
@interface TOEmployee : TSUser
2229
/**
曹云霄's avatar
曹云霄 committed
2230
 * 职位编码列表, (多个职位编码用逗号分隔,非必填)
2231 2232
 *
 *
曹云霄's avatar
曹云霄 committed
2233 2234 2235 2236 2237 2238
 */
@property (nonatomic, copy) NSString *positions;
@end /* interface TOEmployee */

#endif