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

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


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

21

曹云霄's avatar
曹云霄 committed
22 23 24 25 26 27


@class PageRows;
@class RsResponse;
@class LoginInfo;
@class ModifyPasswordRequest;
勾芒's avatar
勾芒 committed
28 29
@class RsEmployeeRequest;
@class GoodsCategory;
曹云霄's avatar
曹云霄 committed
30
@class GoodsFilter;
勾芒's avatar
勾芒 committed
31
@class HotFilter;
32
@class OrderFilter;
勾芒's avatar
勾芒 committed
33
@class OrderPayRequest;
34
@class SceneFilter;
35 36
@class RsShippingAddrEntity;
@class SaveShoppingCartRequest;
勾芒's avatar
勾芒 committed
37
@class ShopCartFilter;
38 39 40 41 42 43
@class TOConsumerEntity;
@class VOResellerGoodsEntity;
@class TOGoodsCategoryEntity;
@class TOGoodsLabelCategoryEntity;
@class TOOrderdetailEntity;
@class TOSceneEntity;
曹云霄's avatar
曹云霄 committed
44 45
@class TOShopcartEntity;
@class IdEntity;
46 47 48 49 50 51 52 53 54
@class TOShippingAddrEntity;
@class TOPositionEntity;
@class TOOrderEntity;
@class TOGoodsLabelEntity;
@class TOGoodsBrandEntity;
@class TOGoodsEntity;
@class RsShareResponse;
@class DeleteCartRequest;
@class SceneCondition;
勾芒's avatar
勾芒 committed
55 56 57
@class OrderBill;
@class GoodsCondition;
@class DataDict;
曹云霄's avatar
曹云霄 committed
58 59 60 61 62 63 64
@class ResetPasswordRequest;
@class LoginResult;
@class ConsumerQueryCondition;
@class ExceptionCode;
@class DataPage;
@class TSBaseUser;
@class TSDepart;
勾芒's avatar
勾芒 committed
65
@class TSUserOrg;
66
@class ShopCartResponse;
勾芒's avatar
勾芒 committed
67
@class SceneResponse;
曹云霄's avatar
曹云霄 committed
68 69 70 71 72
@class OrderResponse;
@class GoodsResponse;
@class ConsumerPageResult;
@class TSUser;
@class TOEmployee;
73

曹云霄's avatar
曹云霄 committed
74 75 76 77
@protocol PageRows @end
@protocol RsResponse @end
@protocol LoginInfo @end
@protocol ModifyPasswordRequest @end
勾芒's avatar
勾芒 committed
78 79
@protocol RsEmployeeRequest @end
@protocol GoodsCategory @end
曹云霄's avatar
曹云霄 committed
80
@protocol GoodsFilter @end
勾芒's avatar
勾芒 committed
81
@protocol HotFilter @end
82
@protocol OrderFilter @end
勾芒's avatar
勾芒 committed
83
@protocol OrderPayRequest @end
84
@protocol SceneFilter @end
85 86
@protocol RsShippingAddrEntity @end
@protocol SaveShoppingCartRequest @end
勾芒's avatar
勾芒 committed
87
@protocol ShopCartFilter @end
88 89 90 91 92 93
@protocol TOConsumerEntity @end
@protocol VOResellerGoodsEntity @end
@protocol TOGoodsCategoryEntity @end
@protocol TOGoodsLabelCategoryEntity @end
@protocol TOOrderdetailEntity @end
@protocol TOSceneEntity @end
曹云霄's avatar
曹云霄 committed
94 95
@protocol TOShopcartEntity @end
@protocol IdEntity @end
96 97 98 99 100 101 102 103 104
@protocol TOShippingAddrEntity @end
@protocol TOPositionEntity @end
@protocol TOOrderEntity @end
@protocol TOGoodsLabelEntity @end
@protocol TOGoodsBrandEntity @end
@protocol TOGoodsEntity @end
@protocol RsShareResponse @end
@protocol DeleteCartRequest @end
@protocol SceneCondition @end
勾芒's avatar
勾芒 committed
105 106 107
@protocol OrderBill @end
@protocol GoodsCondition @end
@protocol DataDict @end
曹云霄's avatar
曹云霄 committed
108 109 110 111 112 113 114
@protocol ResetPasswordRequest @end
@protocol LoginResult @end
@protocol ConsumerQueryCondition @end
@protocol ExceptionCode @end
@protocol DataPage @end
@protocol TSBaseUser @end
@protocol TSDepart @end
勾芒's avatar
勾芒 committed
115
@protocol TSUserOrg @end
116
@protocol ShopCartResponse @end
勾芒's avatar
勾芒 committed
117
@protocol SceneResponse @end
曹云霄's avatar
曹云霄 committed
118 119 120 121 122
@protocol OrderResponse @end
@protocol GoodsResponse @end
@protocol ConsumerPageResult @end
@protocol TSUser @end
@protocol TOEmployee @end
123 124


曹云霄's avatar
曹云霄 committed
125 126 127 128 129
/**
 *  分页类
 
 @author Administrator
 @since 0.1
130
 
曹云霄's avatar
曹云霄 committed
131 132
 */
@interface PageRows : JSONModel
133
/**
曹云霄's avatar
曹云霄 committed
134
 * (no documentation provided)
135 136
 *
 *
曹云霄's avatar
曹云霄 committed
137
 */
138
@property (nonatomic, assign) NSInteger page;
139
/**
曹云霄's avatar
曹云霄 committed
140
 * (no documentation provided)
141 142
 *
 *
曹云霄's avatar
曹云霄 committed
143
 */
144
@property (nonatomic, assign) NSInteger rows;
145
/**
曹云霄's avatar
曹云霄 committed
146
 * (no documentation provided)
147 148
 *
 *
曹云霄's avatar
曹云霄 committed
149
 */
150
@property (nonatomic, assign) NSInteger total;
151 152 153 154 155
/**
 * (no documentation provided)
 *
 *
 */
156
@property (nonatomic, assign) NSInteger totalpages;
曹云霄's avatar
曹云霄 committed
157 158 159
@end /* interface PageRows */


160

曹云霄's avatar
曹云霄 committed
161 162 163 164 165
/**
 *  Restful Service response base
 
 @author Debenson
 @since 0.1
166
 
曹云霄's avatar
曹云霄 committed
167 168
 */
@interface RsResponse : JSONModel
169
/**
曹云霄's avatar
曹云霄 committed
170
 * 0:正常, 非0异常。
171 172
 *
 *
曹云霄's avatar
曹云霄 committed
173 174
 */
@property (nonatomic, assign) long long code;
175
/**
曹云霄's avatar
曹云霄 committed
176
 * 异常描述
177 178
 *
 *
曹云霄's avatar
曹云霄 committed
179 180
 */
@property (nonatomic, copy) NSString *message;
181
/**
曹云霄's avatar
曹云霄 committed
182
 * 返回数据
183 184
 *
 *
曹云霄's avatar
曹云霄 committed
185 186 187 188
 */
@property (nonatomic, strong) NSObject *data;
@end /* interface RsResponse */

189

曹云霄's avatar
曹云霄 committed
190 191 192 193 194 195

/**
 *  经销商用户登录信息。
 
 @author Debenson
 @since 0.1
196
 
曹云霄's avatar
曹云霄 committed
197 198
 */
@interface LoginInfo : JSONModel
199
/**
曹云霄's avatar
曹云霄 committed
200
 * 用户名
201 202
 *
 *
曹云霄's avatar
曹云霄 committed
203 204
 */
@property (nonatomic, copy) NSString *username;
205
/**
曹云霄's avatar
曹云霄 committed
206
 * 密码
207 208
 *
 *
曹云霄's avatar
曹云霄 committed
209 210 211 212 213
 */
@property (nonatomic, copy) NSString *password;
@end /* interface LoginInfo */


214

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

243

曹云霄's avatar
曹云霄 committed
244 245

/**
勾芒's avatar
勾芒 committed
246
 *  @author MHk
曹云霄's avatar
曹云霄 committed
247
 @since 0.1
248 249
 
 */
勾芒's avatar
勾芒 committed
250
@interface RsEmployeeRequest : JSONModel
251 252 253 254 255
/**
 * (no documentation provided)
 *
 *
 */
勾芒's avatar
勾芒 committed
256 257
@property (nonatomic, strong) TOEmployee *employee;
@end /* interface RsEmployeeRequest */
258

曹云霄's avatar
曹云霄 committed
259

260 261

/**
勾芒's avatar
勾芒 committed
262
 *  @author Debenson
263 264
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
265
 */
勾芒's avatar
勾芒 committed
266
@interface GoodsCategory : JSONModel
267
/**
勾芒's avatar
勾芒 committed
268
 * 分类id
269 270 271
 *
 *
 */
勾芒's avatar
勾芒 committed
272
@property (nonatomic, copy) NSString *fid;
273
/**
勾芒's avatar
勾芒 committed
274
 * 分类名称
275 276 277
 *
 *
 */
勾芒's avatar
勾芒 committed
278
@property (nonatomic, copy) NSString *name;
279
/**
勾芒's avatar
勾芒 committed
280 281
 * 下级分类列表
 * @see GoodsCategory
282 283
 *
 */
勾芒's avatar
勾芒 committed
284 285
@property (nonatomic, strong) NSArray<GoodsCategory> *children;
@end /* interface GoodsCategory */
曹云霄's avatar
曹云霄 committed
286

287

曹云霄's avatar
曹云霄 committed
288 289 290 291

/**
 *  @author Debenson
 @since 0.1
292
 
曹云霄's avatar
曹云霄 committed
293 294
 */
@interface GoodsFilter : JSONModel
295
/**
曹云霄's avatar
曹云霄 committed
296
 * 风格
297 298
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
299
 */
300 301 302
@property (nonatomic, strong) NSArray<DataDict> *styles;
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
303
 * @see GoodsCategory
304
 *
曹云霄's avatar
曹云霄 committed
305 306
 */
@property (nonatomic, strong) NSArray<GoodsCategory> *categories;
307
/**
曹云霄's avatar
曹云霄 committed
308
 * 空间
309 310
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
311
 */
312 313
@property (nonatomic, strong) NSArray<DataDict> *space;
/**
曹云霄's avatar
曹云霄 committed
314
 * 材质
315 316
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
317
 */
318 319
@property (nonatomic, strong) NSArray<DataDict> *material;
/**
曹云霄's avatar
曹云霄 committed
320
 * 价格
321 322
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
323
 */
324
@property (nonatomic, strong) NSArray<DataDict> *price;
曹云霄's avatar
曹云霄 committed
325 326 327 328 329
@end /* interface GoodsFilter */



/**
勾芒's avatar
勾芒 committed
330
 *  @author Administrator
曹云霄's avatar
曹云霄 committed
331
 @since 0.1
332
 
曹云霄's avatar
曹云霄 committed
333
 */
勾芒's avatar
勾芒 committed
334
@interface HotFilter : JSONModel
335
/**
曹云霄's avatar
曹云霄 committed
336
 * (no documentation provided)
勾芒's avatar
勾芒 committed
337
 * @see DataDict
338 339
 *
 */
勾芒's avatar
勾芒 committed
340 341
@property (nonatomic, strong) NSArray<DataDict> *list;
@end /* interface HotFilter */
曹云霄's avatar
曹云霄 committed
342

343

曹云霄's avatar
曹云霄 committed
344 345

/**
346
 *  订单筛选条件。
勾芒's avatar
勾芒 committed
347
 
348
 @author Debenson
曹云霄's avatar
曹云霄 committed
349
 @since 0.1
350
 
曹云霄's avatar
曹云霄 committed
351
 */
352
@interface OrderFilter : JSONModel
353
/**
354
 * 经销商代码
355 356
 *
 *
曹云霄's avatar
曹云霄 committed
357
 */
358
@property (nonatomic, copy) NSString *resellerCodeEquals;
359
/**
勾芒's avatar
勾芒 committed
360
 *
361 362
 *
 *
曹云霄's avatar
曹云霄 committed
363
 */
364
@property (nonatomic, copy) NSString *orderStateEquals;
365
/**
366
 * 消费者名称或手机号等于
367 368
 *
 *
曹云霄's avatar
曹云霄 committed
369
 */
370 371
@property (nonatomic, copy) NSString *consumerNameOrMobileEquals;

勾芒's avatar
勾芒 committed
372
/**
373 374
 * 客户标识等于
 *
勾芒's avatar
勾芒 committed
375
 *
376 377 378 379 380
 */
@property (nonatomic, copy) NSString *consumerIdEquals;

/**
 * 分页数据
勾芒's avatar
勾芒 committed
381 382 383
 *
 *
 */
384 385 386 387 388 389 390 391 392 393 394 395 396
@property (nonatomic, strong) DataPage *dp;
@end /* interface OrderFilter */



/**
 *  订单支付
 
 @author wsx
 @since 0.1
 
 */
@interface OrderPayRequest : JSONModel
勾芒's avatar
勾芒 committed
397 398 399 400 401
/**
 *
 *
 *
 */
402
@property (nonatomic, copy) NSString *orderNumber;
勾芒's avatar
勾芒 committed
403 404 405 406 407
/**
 *
 *
 *
 */
408
@property (nonatomic, copy) NSString *oldstate;
勾芒's avatar
勾芒 committed
409 410 411 412 413
/**
 *
 *
 *
 */
414
@property (nonatomic, copy) NSString *fnewstate;
415
/**
416 417 418
 *
 *
 *
419
 */
420
@property (nonatomic, copy) NSString *payType;
421
/**
422
 *
勾芒's avatar
勾芒 committed
423
 *
424 425
 *
 */
426
@property (nonatomic, copy) NSString *isbill;
勾芒's avatar
勾芒 committed
427
/**
428
 *
勾芒's avatar
勾芒 committed
429 430 431
 *
 *
 */
432
@property (nonatomic, copy) NSString *billType;
433
/**
434
 *
勾芒's avatar
勾芒 committed
435
 *
436 437
 *
 */
438 439
@property (nonatomic, copy) NSString *billTitle;
@end /* interface OrderPayRequest */
440 441


勾芒's avatar
勾芒 committed
442 443 444 445 446 447

/**
 *  @author Administrator
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
448
@interface SceneFilter : JSONModel
勾芒's avatar
勾芒 committed
449 450
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
451
 * @see DataDict
勾芒's avatar
勾芒 committed
452 453
 *
 */
勾芒's avatar
勾芒 committed
454 455 456 457 458 459 460 461
@property (nonatomic, strong) NSArray<DataDict> *styles;
/**
 * (no documentation provided)
 * @see DataDict
 *
 */
@property (nonatomic, strong) NSArray<DataDict> *space;
@end /* interface SceneFilter */
勾芒's avatar
勾芒 committed
462 463


曹云霄's avatar
曹云霄 committed
464 465

/**
466
 *  @author Administrator
勾芒's avatar
勾芒 committed
467 468 469
 @since 0.1
 
 */
470
@interface RsShippingAddrEntity : JSONModel
勾芒's avatar
勾芒 committed
471
/**
472 473
 * (no documentation provided)
 * @see TOShippingAddrEntity
勾芒's avatar
勾芒 committed
474 475
 *
 */
476 477
@property (nonatomic, strong) NSArray<TOShippingAddrEntity> *list;
@end /* interface RsShippingAddrEntity */
勾芒's avatar
勾芒 committed
478 479 480 481



/**
482
 *  @author Debenson
勾芒's avatar
勾芒 committed
483 484 485
 @since 0.1
 
 */
486
@interface SaveShoppingCartRequest : JSONModel
勾芒's avatar
勾芒 committed
487 488 489 490 491 492 493
/**
 * 消费者标识
 *
 *
 */
@property (nonatomic, copy) NSString *consumerId;
/**
494
 * 商品标识
勾芒's avatar
勾芒 committed
495 496 497
 *
 *
 */
498 499 500 501 502 503 504 505
@property (nonatomic, copy) NSString *goodsId;
/**
 * 商品数量,>0表示添加, <0表示减少
 *
 *
 */
@property (nonatomic, copy) NSString *count;
@end /* interface SaveShoppingCartRequest */
勾芒's avatar
勾芒 committed
506 507 508 509



/**
510
 *  购物车查询条件。
511
 
勾芒's avatar
勾芒 committed
512 513
 @author Debenson
 @since 0.1
514
 
曹云霄's avatar
曹云霄 committed
515
 */
516
@interface ShopCartFilter : JSONModel
517
/**
518
 * 消费者标识
519 520 521
 *
 *
 */
522
@property (nonatomic, copy) NSString *consumerId;
523
/**
524
 * 分页数据
525 526 527
 *
 *
 */
528 529
@property (nonatomic, strong) DataPage *dp;
@end /* interface ShopCartFilter */
勾芒's avatar
勾芒 committed
530 531 532



533
/**
勾芒's avatar
勾芒 committed
534
 *  @Title: Entity
535
 @Description: 客户
勾芒's avatar
勾芒 committed
536
 @author onlineGenerator
537
 @date 2016-05-08 18:08:58
勾芒's avatar
勾芒 committed
538 539 540
 @version V1.0
 
 
541
 */
542
@interface TOConsumerEntity : JSONModel
543
/**
544
 * 方法: 取得java.lang.String
545 546 547
 *
 *
 */
548
@property (nonatomic, copy) NSString *fid;
549
/**
550
 * 方法: 取得java.lang.String
551 552 553
 *
 *
 */
554
@property (nonatomic, copy) NSString *createName;
555
/**
556
 * 方法: 取得java.lang.String
557 558 559
 *
 *
 */
560
@property (nonatomic, copy) NSString *createBy;
561
/**
562
 * 方法: 取得java.util.Date
563 564 565
 *
 *
 */
566
@property (nonatomic, copy) NSString *createDate;
567
/**
568
 * 方法: 取得java.lang.String
569 570 571
 *
 *
 */
572
@property (nonatomic, copy) NSString *sysOrgCode;
573
/**
曹云霄's avatar
曹云霄 committed
574
 * 方法: 取得java.lang.String
575 576
 *
 *
曹云霄's avatar
曹云霄 committed
577
 */
578
@property (nonatomic, copy) NSString *name;
579
/**
580
 * 方法: 取得java.lang.String
581 582
 *
 *
曹云霄's avatar
曹云霄 committed
583
 */
584
@property (nonatomic, copy) NSString *mobile;
585
/**
586
 * 方法: 取得java.lang.String
587 588
 *
 *
曹云霄's avatar
曹云霄 committed
589
 */
590
@property (nonatomic, copy) NSString *province;
591
/**
592
 * 方法: 取得java.lang.String
593 594
 *
 *
曹云霄's avatar
曹云霄 committed
595
 */
596
@property (nonatomic, copy) NSString *city;
597
/**
曹云霄's avatar
曹云霄 committed
598
 * 方法: 取得java.lang.String
599 600
 *
 *
曹云霄's avatar
曹云霄 committed
601
 */
602
@property (nonatomic, copy) NSString *country;
603
/**
曹云霄's avatar
曹云霄 committed
604
 * 方法: 取得java.lang.String
605 606
 *
 *
曹云霄's avatar
曹云霄 committed
607
 */
608
@property (nonatomic, copy) NSString *address;
609
/**
曹云霄's avatar
曹云霄 committed
610
 * 方法: 取得java.lang.String
611 612
 *
 *
曹云霄's avatar
曹云霄 committed
613
 */
614
@property (nonatomic, copy) NSString *picture;
615
/**
616
 * 方法: 取得java.util.Date
617 618
 *
 *
曹云霄's avatar
曹云霄 committed
619
 */
620
@property (nonatomic, copy) NSString *lastVisitedTime;
621
/**
曹云霄's avatar
曹云霄 committed
622
 * 方法: 取得java.lang.String
623 624
 *
 *
曹云霄's avatar
曹云霄 committed
625
 */
626 627 628 629 630 631 632 633 634 635 636 637 638
@property (nonatomic, copy) NSString *company;
@end /* interface TOConsumerEntity */



/**
 *  经销商和商品关系表。
 
 @author Debenson
 @since 0.1
 
 */
@interface VOResellerGoodsEntity : JSONModel
639
/**
曹云霄's avatar
曹云霄 committed
640
 * 方法: 取得java.lang.String
641 642
 *
 *
曹云霄's avatar
曹云霄 committed
643
 */
644
@property (nonatomic, copy) NSString *fid;
645
/**
646 647 648 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
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *onlineTime;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *company;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *code;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *number;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *categoryId;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *brandId;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *keyword;
/**
 * 方法: 取得java.math.BigDecimal
701 702
 *
 *
曹云霄's avatar
曹云霄 committed
703
 */
勾芒's avatar
勾芒 committed
704 705 706 707 708 709 710 711 712 713 714 715 716
@property (nonatomic, strong) NSNumber *guidePrice;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *tagPrice;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *costPrice;
勾芒's avatar
勾芒 committed
717
/**
勾芒's avatar
勾芒 committed
718
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
719 720 721
 *
 *
 */
勾芒's avatar
勾芒 committed
722
@property (nonatomic, copy) NSString *state;
勾芒's avatar
勾芒 committed
723
/**
勾芒's avatar
勾芒 committed
724
 * 方法: 取得java.lang.Integer
勾芒's avatar
勾芒 committed
725 726 727
 *
 *
 */
728
@property (nonatomic, assign) NSInteger inv;
729
/**
勾芒's avatar
勾芒 committed
730 731 732
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
733
 */
勾芒's avatar
勾芒 committed
734 735 736 737 738 739 740
@property (nonatomic, copy) NSString *detailedIntro;
/**
 * 方法: 取得java.lang.Double
 *
 *
 */
@property (nonatomic, assign) double weight;
741
/**
勾芒's avatar
勾芒 committed
742
 * 方法: 取得java.lang.String
743 744
 *
 *
曹云霄's avatar
曹云霄 committed
745
 */
勾芒's avatar
勾芒 committed
746
@property (nonatomic, copy) NSString *unit;
曹云霄's avatar
曹云霄 committed
747
/**
勾芒's avatar
勾芒 committed
748 749 750
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
751
 */
勾芒's avatar
勾芒 committed
752
@property (nonatomic, copy) NSString *productProfile;
勾芒's avatar
勾芒 committed
753
/**
勾芒's avatar
勾芒 committed
754
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
755 756 757
 *
 *
 */
勾芒's avatar
勾芒 committed
758
@property (nonatomic, copy) NSString *power;
759
/**
勾芒's avatar
勾芒 committed
760
 * 方法: 取得java.lang.String
761 762
 *
 *
曹云霄's avatar
曹云霄 committed
763
 */
勾芒's avatar
勾芒 committed
764
@property (nonatomic, copy) NSString *colorTemperature;
765
/**
曹云霄's avatar
曹云霄 committed
766
 * 方法: 取得java.lang.String
767 768
 *
 *
曹云霄's avatar
曹云霄 committed
769
 */
勾芒's avatar
勾芒 committed
770
@property (nonatomic, copy) NSString *spec;
曹云霄's avatar
曹云霄 committed
771 772
/**
 * 方法: 取得java.lang.String
773 774
 *
 *
曹云霄's avatar
曹云霄 committed
775
 */
勾芒's avatar
勾芒 committed
776
@property (nonatomic, copy) NSString *function;
777
/**
勾芒's avatar
勾芒 committed
778
 * 方法: 取得java.lang.String
779 780
 *
 *
曹云霄's avatar
曹云霄 committed
781
 */
勾芒's avatar
勾芒 committed
782
@property (nonatomic, copy) NSString *material;
783
/**
曹云霄's avatar
曹云霄 committed
784
 * 方法: 取得java.lang.String
785 786
 *
 *
曹云霄's avatar
曹云霄 committed
787
 */
勾芒's avatar
勾芒 committed
788
@property (nonatomic, copy) NSString *lightSource;
789
/**
勾芒's avatar
勾芒 committed
790
 * 方法: 取得java.lang.String
791 792
 *
 *
曹云霄's avatar
曹云霄 committed
793
 */
勾芒's avatar
勾芒 committed
794
@property (nonatomic, copy) NSString *goodsStyle;
795
/**
曹云霄's avatar
曹云霄 committed
796
 * 方法: 取得java.lang.String
797 798
 *
 *
曹云霄's avatar
曹云霄 committed
799
 */
勾芒's avatar
勾芒 committed
800
@property (nonatomic, copy) NSString *series;
801
/**
曹云霄's avatar
曹云霄 committed
802
 * 方法: 取得java.lang.String
803 804
 *
 *
曹云霄's avatar
曹云霄 committed
805
 */
勾芒's avatar
勾芒 committed
806
@property (nonatomic, copy) NSString *area;
807 808 809 810
/**
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
811
 */
勾芒's avatar
勾芒 committed
812
@property (nonatomic, copy) NSString *size;
813
/**
勾芒's avatar
勾芒 committed
814 815 816
 * 方法: 取得java.lang.String
 *
 *
817
 */
勾芒's avatar
勾芒 committed
818
@property (nonatomic, copy) NSString *space;
819 820 821 822 823
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
824
@property (nonatomic, copy) NSString *installMethod;
825 826 827 828 829
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
830
@property (nonatomic, copy) NSString *lightNumber;
831 832 833 834 835
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
836
@property (nonatomic, copy) NSString *pictures;
837 838 839 840 841
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
842
@property (nonatomic, copy) NSString *barcode;
843
/**
844
 * 方法: 取得java.lang.String
845 846 847
 *
 *
 */
848
@property (nonatomic, copy) NSString *resellerId;
849
/**
850
 * (no documentation provided)
851 852 853
 *
 *
 */
854
@property (nonatomic, copy) NSString *categoryName;
855
/**
856
 * (no documentation provided)
857 858 859
 *
 *
 */
860 861 862 863 864
@property (nonatomic, copy) NSString *brandName;
@end /* interface VOResellerGoodsEntity */



865
/**
866 867 868 869 870 871 872
 *  @Title: Entity
 @Description: 商品分类
 @author onlineGenerator
 @date 2016-05-10 10:17:53
 @version V1.0
 
 
873
 */
874
@interface TOGoodsCategoryEntity : JSONModel
875
/**
876
 * (no documentation provided)
877 878 879
 *
 *
 */
880
@property (nonatomic, copy) NSString *upperName;
881 882 883 884 885
/**
 * 方法: 取得java.lang.String
 *
 *
 */
886
@property (nonatomic, copy) NSString *fid;
887 888 889 890 891
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
892
@property (nonatomic, copy) NSString *code;
893 894 895 896 897
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
898
@property (nonatomic, copy) NSString *name;
899
/**
勾芒's avatar
勾芒 committed
900
 * 方法: 取得java.lang.String
901 902 903
 *
 *
 */
904
@property (nonatomic, copy) NSString *upperId;
勾芒's avatar
勾芒 committed
905
/**
906
 * 方法: 取得java.lang.Integer
勾芒's avatar
勾芒 committed
907 908 909
 *
 *
 */
910 911
@property (nonatomic, assign) NSInteger level;
@end /* interface TOGoodsCategoryEntity */
勾芒's avatar
勾芒 committed
912 913 914



勾芒's avatar
勾芒 committed
915
/**
勾芒's avatar
勾芒 committed
916
 *  @Title: Entity
917
 @Description: 商品标签分类
勾芒's avatar
勾芒 committed
918
 @author onlineGenerator
919
 @date 2016-05-05 16:57:27
勾芒's avatar
勾芒 committed
920 921 922
 @version V1.0
 
 
勾芒's avatar
勾芒 committed
923
 */
924
@interface TOGoodsLabelCategoryEntity : JSONModel
勾芒's avatar
勾芒 committed
925 926 927 928 929
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
930
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
931
/**
勾芒's avatar
勾芒 committed
932
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
933 934 935
 *
 *
 */
勾芒's avatar
勾芒 committed
936
@property (nonatomic, copy) NSString *sysOrgCode;
勾芒's avatar
勾芒 committed
937
/**
勾芒's avatar
勾芒 committed
938
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
939 940 941
 *
 *
 */
勾芒's avatar
勾芒 committed
942
@property (nonatomic, copy) NSString *sysCompanyCode;
勾芒's avatar
勾芒 committed
943 944 945 946 947
/**
 * 方法: 取得java.lang.String
 *
 *
 */
948
@property (nonatomic, copy) NSString *code;
勾芒's avatar
勾芒 committed
949 950 951 952 953
/**
 * 方法: 取得java.lang.String
 *
 *
 */
954 955
@property (nonatomic, copy) NSString *name;
@end /* interface TOGoodsLabelCategoryEntity */
勾芒's avatar
勾芒 committed
956 957


958

959
/**
勾芒's avatar
勾芒 committed
960
 *  @Title: Entity
961
 @Description: 订单详情
勾芒's avatar
勾芒 committed
962
 @author onlineGenerator
963
 @date 2016-05-06 12:53:09
勾芒's avatar
勾芒 committed
964 965 966
 @version V1.0
 
 
967
 */
968
@interface TOOrderdetailEntity : JSONModel
969 970 971 972 973
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
974
@property (nonatomic, copy) NSString *fid;
975 976 977 978 979
/**
 * 方法: 取得java.lang.String
 *
 *
 */
980
@property (nonatomic, copy) NSString *goodsId;
981
/**
982 983 984
 * 方法: 取得java.lang.String
 *
 *
985
 */
986
@property (nonatomic, copy) NSString *goodsCode;
987
/**
988
 * 方法: 取得java.lang.String
989 990 991
 *
 *
 */
992
@property (nonatomic, copy) NSString *goodsName;
993 994 995 996 997
/**
 * 方法: 取得java.lang.String
 *
 *
 */
998
@property (nonatomic, copy) NSString *goodsCover;
999
/**
1000
 * 方法: 取得java.lang.String
1001 1002
 *
 *
曹云霄's avatar
曹云霄 committed
1003
 */
1004
@property (nonatomic, copy) NSString *goodsSpec;
1005
/**
1006
 * 方法: 取得java.lang.String
1007 1008 1009
 *
 *
 */
1010
@property (nonatomic, copy) NSString *goodsBrand;
1011 1012 1013 1014 1015
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1016
@property (nonatomic, copy) NSString *goodsNum;
勾芒's avatar
勾芒 committed
1017
/**
1018
 * 方法: 取得java.math.BigDecimal
勾芒's avatar
勾芒 committed
1019 1020 1021
 *
 *
 */
1022
@property (nonatomic, strong) NSNumber *goodsPrice;
1023
/**
1024
 * 方法: 取得java.math.BigDecimal
1025 1026 1027
 *
 *
 */
1028
@property (nonatomic, strong) NSNumber *goodsTotalPrice;
勾芒's avatar
勾芒 committed
1029
/**
1030
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
1031 1032 1033
 *
 *
 */
1034
@property (nonatomic, copy) NSString *orderId;
勾芒's avatar
勾芒 committed
1035 1036 1037 1038 1039
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1040
@property (nonatomic, copy) NSString *goodsUnit;
1041
/**
勾芒's avatar
勾芒 committed
1042 1043 1044
 * 方法: 取得java.lang.String
 *
 *
1045
 */
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
@property (nonatomic, copy) NSString *remark;
@end /* interface TOOrderdetailEntity */



/**
 *  @Title: Entity
 @Description: 场景
 @author onlineGenerator
 @date 2016-05-05 18:39:39
 @version V1.0
 
 
 */
@interface TOSceneEntity : JSONModel
1061
/**
1062
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
1063 1064 1065
 *
 *
 */
1066
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
1067
/**
1068
 * 方法: 取得java.lang.String
1069 1070 1071
 *
 *
 */
1072
@property (nonatomic, copy) NSString *sceneCode;
1073
/**
1074
 * 方法: 取得java.lang.String
1075 1076 1077
 *
 *
 */
1078
@property (nonatomic, copy) NSString *name;
1079 1080 1081 1082 1083
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1084
@property (nonatomic, copy) NSString *pricure;
1085
/**
勾芒's avatar
勾芒 committed
1086
 * 方法: 取得java.lang.String
1087 1088 1089
 *
 *
 */
1090
@property (nonatomic, copy) NSString *category;
1091
/**
1092
 * 方法: 取得java.lang.String
1093 1094 1095
 *
 *
 */
1096
@property (nonatomic, copy) NSString *style;
1097 1098 1099 1100 1101
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1102 1103 1104 1105 1106
@property (nonatomic, copy) NSString *space;
@end /* interface TOSceneEntity */



1107
/**
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
 *  @Title: Entity
 @Description: t_o_shopcart
 @author onlineGenerator
 @date 2016-05-13 14:26:57
 @version V1.0
 
 
 */
@interface TOShopcartEntity : JSONModel
/**
 * 商品详情
1119 1120 1121
 *
 *
 */
1122
@property (nonatomic, strong) VOResellerGoodsEntity *goods;
1123 1124 1125 1126 1127
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1128
@property (nonatomic, copy) NSString *fid;
1129
/**
1130
 * 方法: 取得java.lang.String
1131 1132 1133
 *
 *
 */
1134
@property (nonatomic, copy) NSString *createName;
1135
/**
1136
 * 方法: 取得java.lang.String
1137 1138 1139
 *
 *
 */
1140
@property (nonatomic, copy) NSString *createBy;
勾芒's avatar
勾芒 committed
1141
/**
1142
 * 方法: 取得java.util.Date
勾芒's avatar
勾芒 committed
1143 1144 1145
 *
 *
 */
1146
@property (nonatomic, copy) NSString *createDate;
1147
/**
1148 1149 1150
 * 方法: 取得java.lang.String
 *
 *
1151
 */
1152
@property (nonatomic, copy) NSString *updateName;
1153 1154 1155 1156 1157
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1158 1159 1160 1161 1162 1163 1164
@property (nonatomic, copy) NSString *updateBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
1165
/**
勾芒's avatar
勾芒 committed
1166
 * 方法: 取得java.lang.String
1167 1168 1169
 *
 *
 */
1170 1171 1172 1173 1174 1175 1176
@property (nonatomic, copy) NSString *goodsId;
/**
 * 方法: 取得java.lang.Integer
 *
 *
 */
@property (nonatomic, assign) NSInteger goodsNum;
曹云霄's avatar
曹云霄 committed
1177
/**
勾芒's avatar
勾芒 committed
1178 1179
 * 方法: 取得java.lang.String
 *
1180
 *
曹云霄's avatar
曹云霄 committed
1181
 */
1182
@property (nonatomic, copy) NSString *consumerId;
1183
/**
1184
 * 方法: 取得java.lang.String
1185 1186 1187
 *
 *
 */
1188
@property (nonatomic, copy) NSString *resellerId;
1189
/**
勾芒's avatar
勾芒 committed
1190
 * 方法: 取得java.lang.String
1191 1192
 *
 *
曹云霄's avatar
曹云霄 committed
1193
 */
1194 1195
@property (nonatomic, strong) NSNumber *costPrice;
@end /* interface TOShopcartEntity */
1196 1197 1198



1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
/**
 * (no documentation provided)
 */
@interface IdEntity : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
@end /* interface IdEntity */


1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222

/**
 *  @Title: Entity
 @Description: t_o_shipping_addr
 @author onlineGenerator
 @date 2016-05-14 16:14:15
 @version V1.0
 
 
 */
@interface TOShippingAddrEntity : JSONModel
1223
/**
勾芒's avatar
勾芒 committed
1224
 * 方法: 取得java.lang.String
1225 1226
 *
 *
曹云霄's avatar
曹云霄 committed
1227
 */
1228 1229 1230 1231 1232 1233 1234
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
1235
/**
曹云霄's avatar
曹云霄 committed
1236
 * 方法: 取得java.lang.String
1237 1238
 *
 *
曹云霄's avatar
曹云霄 committed
1239
 */
1240
@property (nonatomic, copy) NSString *sysOrgCode;
勾芒's avatar
勾芒 committed
1241 1242 1243 1244 1245
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *miblephone;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *province;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *city;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *country;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *address;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *consumerId;
@end /* interface TOShippingAddrEntity */
勾芒's avatar
勾芒 committed
1284 1285 1286



1287
/**
勾芒's avatar
勾芒 committed
1288
 *  @Title: Entity
1289
 @Description: 经销商员工职位
勾芒's avatar
勾芒 committed
1290
 @author onlineGenerator
1291
 @date 2016-05-02 17:39:21
勾芒's avatar
勾芒 committed
1292 1293 1294
 @version V1.0
 
 
勾芒's avatar
勾芒 committed
1295
 */
1296
@interface TOPositionEntity : JSONModel
1297
/**
1298
 * 方法: 取得java.lang.String
1299 1300 1301
 *
 *
 */
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
@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 */



/**
 *  @Title: Entity
 @Description: 订单
 @author onlineGenerator
 @date 2016-05-06 12:53:09
 @version V1.0
 
 
 */
@interface TOOrderEntity : JSONModel
勾芒's avatar
勾芒 committed
1341
/**
勾芒's avatar
勾芒 committed
1342
 * 方法: 取得java.lang.String
1343 1344
 *
 *
曹云霄's avatar
曹云霄 committed
1345
 */
勾芒's avatar
勾芒 committed
1346
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
1347 1348 1349 1350 1351
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1352
@property (nonatomic, copy) NSString *createName;
勾芒's avatar
勾芒 committed
1353 1354 1355 1356 1357
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1358
@property (nonatomic, copy) NSString *createBy;
勾芒's avatar
勾芒 committed
1359
/**
1360
 * 方法: 取得java.util.Date
勾芒's avatar
勾芒 committed
1361 1362 1363
 *
 *
 */
1364
@property (nonatomic, copy) NSString *createDate;
勾芒's avatar
勾芒 committed
1365 1366 1367 1368 1369
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1370
@property (nonatomic, copy) NSString *updateName;
勾芒's avatar
勾芒 committed
1371
/**
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1388
@property (nonatomic, copy) NSString *sysOrgCode;
1389
/**
1390
 * 方法: 取得java.lang.String
1391 1392 1393
 *
 *
 */
1394
@property (nonatomic, copy) NSString *orderNumber;
1395
/**
1396
 * 方法: 取得java.util.Date
1397 1398 1399
 *
 *
 */
1400
@property (nonatomic, copy) NSString *orderTime;
1401 1402 1403 1404 1405
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1406
@property (nonatomic, copy) NSString *guideId;
1407 1408 1409 1410 1411
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1412
@property (nonatomic, copy) NSString *orderState;
1413
/**
1414 1415 1416
 * 方法: 取得java.lang.String
 *
 *
1417
 */
1418
@property (nonatomic, copy) NSString *consumerId;
1419
/**
1420
 * 方法: 取得java.lang.String
1421 1422 1423
 *
 *
 */
1424
@property (nonatomic, copy) NSString *goodsNum;
1425
/**
1426 1427 1428
 * 方法: 取得java.math.BigDecimal
 *
 *
勾芒's avatar
勾芒 committed
1429
 */
1430
@property (nonatomic, strong) NSNumber *orderPrice;
1431
/**
曹云霄's avatar
曹云霄 committed
1432
 * 方法: 取得java.lang.String
1433 1434
 *
 *
曹云霄's avatar
曹云霄 committed
1435
 */
1436
@property (nonatomic, copy) NSString *receiverName;
1437
/**
勾芒's avatar
勾芒 committed
1438
 * 方法: 取得java.lang.String
1439 1440
 *
 *
曹云霄's avatar
曹云霄 committed
1441
 */
1442
@property (nonatomic, copy) NSString *receiverMobile;
1443
/**
曹云霄's avatar
曹云霄 committed
1444
 * 方法: 取得java.lang.String
1445 1446
 *
 *
曹云霄's avatar
曹云霄 committed
1447
 */
1448
@property (nonatomic, copy) NSString *receiverAddress;
1449
/**
曹云霄's avatar
曹云霄 committed
1450
 * 方法: 取得java.lang.String
1451 1452
 *
 *
曹云霄's avatar
曹云霄 committed
1453
 */
1454
@property (nonatomic, copy) NSString *isBill;
1455
/**
曹云霄's avatar
曹云霄 committed
1456
 * 方法: 取得java.lang.String
1457 1458
 *
 *
曹云霄's avatar
曹云霄 committed
1459
 */
1460
@property (nonatomic, copy) NSString *billType;
1461
/**
曹云霄's avatar
曹云霄 committed
1462
 * 方法: 取得java.lang.String
1463 1464
 *
 *
曹云霄's avatar
曹云霄 committed
1465
 */
1466
@property (nonatomic, copy) NSString *billTitle;
1467
/**
曹云霄's avatar
曹云霄 committed
1468
 * 方法: 取得java.lang.String
1469 1470
 *
 *
曹云霄's avatar
曹云霄 committed
1471
 */
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491
@property (nonatomic, copy) NSString *payType;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *consumerName;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *guideName;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *resellerName;
@end /* interface TOOrderEntity */
勾芒's avatar
勾芒 committed
1492 1493 1494



1495
/**
勾芒's avatar
勾芒 committed
1496
 *  @Title: Entity
1497
 @Description: 商品标签
勾芒's avatar
勾芒 committed
1498
 @author onlineGenerator
1499
 @date 2016-05-05 17:18:15
勾芒's avatar
勾芒 committed
1500 1501 1502
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
1503
 */
1504
@interface TOGoodsLabelEntity : JSONModel
1505
/**
1506
 * (no documentation provided)
1507 1508 1509
 *
 *
 */
1510
@property (nonatomic, strong) TOGoodsLabelCategoryEntity *category;
1511 1512 1513 1514 1515
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1516
@property (nonatomic, copy) NSString *fid;
1517 1518
/**
 * 方法: 取得java.lang.String
1519 1520
 *
 *
曹云霄's avatar
曹云霄 committed
1521
 */
1522
@property (nonatomic, copy) NSString *sysOrgCode;
1523 1524 1525 1526 1527
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1528
@property (nonatomic, copy) NSString *sysCompanyCode;
1529
/**
曹云霄's avatar
曹云霄 committed
1530
 * 方法: 取得java.lang.String
1531 1532
 *
 *
曹云霄's avatar
曹云霄 committed
1533
 */
1534
@property (nonatomic, copy) NSString *name;
1535
/**
勾芒's avatar
勾芒 committed
1536
 * 方法: 取得java.lang.String
1537 1538 1539
 *
 *
 */
1540 1541 1542 1543 1544
@property (nonatomic, copy) NSString *categoryId;
@end /* interface TOGoodsLabelEntity */



1545
/**
1546 1547 1548 1549 1550 1551 1552
 *  @Title: Entity
 @Description: 商品品牌
 @author onlineGenerator
 @date 2016-05-05 16:14:51
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
1553
 */
1554
@interface TOGoodsBrandEntity : JSONModel
1555
/**
曹云霄's avatar
曹云霄 committed
1556
 * 方法: 取得java.lang.String
1557 1558
 *
 *
曹云霄's avatar
曹云霄 committed
1559
 */
1560
@property (nonatomic, copy) NSString *fid;
1561
/**
1562
 * 方法: 取得java.lang.String
1563 1564
 *
 *
曹云霄's avatar
曹云霄 committed
1565
 */
1566
@property (nonatomic, copy) NSString *createName;
1567
/**
1568
 * 方法: 取得java.lang.String
1569 1570
 *
 *
曹云霄's avatar
曹云霄 committed
1571
 */
1572
@property (nonatomic, copy) NSString *createBy;
1573
/**
1574
 * 方法: 取得java.util.Date
1575 1576
 *
 *
曹云霄's avatar
曹云霄 committed
1577
 */
1578
@property (nonatomic, copy) NSString *createDate;
1579
/**
1580
 * 方法: 取得java.lang.String
1581 1582 1583
 *
 *
 */
1584
@property (nonatomic, copy) NSString *sysOrgCode;
1585 1586 1587 1588 1589
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1590
@property (nonatomic, copy) NSString *sysCompanyCode;
1591
/**
勾芒's avatar
勾芒 committed
1592
 * 方法: 取得java.lang.String
1593 1594 1595
 *
 *
 */
1596
@property (nonatomic, copy) NSString *code;
勾芒's avatar
勾芒 committed
1597 1598 1599 1600 1601
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1602
@property (nonatomic, copy) NSString *name;
勾芒's avatar
勾芒 committed
1603
/**
1604
 * 方法: 取得java.lang.Integer
勾芒's avatar
勾芒 committed
1605 1606 1607
 *
 *
 */
1608
@property (nonatomic, copy) NSString *state;
勾芒's avatar
勾芒 committed
1609 1610 1611 1612 1613
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1614
@property (nonatomic, copy) NSString *logo;
1615 1616 1617 1618 1619
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1620 1621
@property (nonatomic, copy) NSString *fdescription;
@end /* interface TOGoodsBrandEntity */
1622 1623 1624



1625
/**
1626
 *  @Title: Entity
1627
 @Description: t_o_goods
1628
 @author onlineGenerator
1629
 @date 2016-05-12 15:44:01
1630 1631 1632
 @version V1.0
 
 
1633
 */
1634
@interface TOGoodsEntity : JSONModel
1635
/**
1636
 * (no documentation provided)
1637 1638
 *
 *
1639
 */
1640
@property (nonatomic, assign) NSInteger resellerInv;
1641
/**
1642
 * (no documentation provided)
1643 1644 1645
 *
 *
 */
1646
@property (nonatomic, strong) NSNumber *resellerTagPrice;
1647
/**
1648
 * (no documentation provided)
1649 1650 1651
 *
 *
 */
1652
@property (nonatomic, copy) NSString *resellerState;
1653
/**
1654
 * (no documentation provided)
1655 1656 1657
 *
 *
 */
1658
@property (nonatomic, copy) NSString *categoryName;
1659
/**
1660
 * (no documentation provided)
1661 1662 1663
 *
 *
 */
1664
@property (nonatomic, copy) NSString *brandName;
1665 1666 1667 1668 1669
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
1670
@property (nonatomic, copy) NSString *fid;
1671
/**
勾芒's avatar
勾芒 committed
1672
 * 方法: 取得java.util.Date
1673 1674 1675
 *
 *
 */
勾芒's avatar
勾芒 committed
1676
@property (nonatomic, copy) NSString *createDate;
1677
/**
勾芒's avatar
勾芒 committed
1678
 * 方法: 取得java.util.Date
1679 1680 1681
 *
 *
 */
勾芒's avatar
勾芒 committed
1682
@property (nonatomic, copy) NSString *onlineTime;
1683
/**
1684
 * 方��: 取得java.lang.String
1685 1686 1687
 *
 *
 */
勾芒's avatar
勾芒 committed
1688
@property (nonatomic, copy) NSString *company;
1689
/**
曹云霄's avatar
曹云霄 committed
1690
 * 方法: 取得java.lang.String
1691 1692
 *
 *
曹云霄's avatar
曹云霄 committed
1693
 */
勾芒's avatar
勾芒 committed
1694
@property (nonatomic, copy) NSString *code;
1695 1696 1697 1698 1699
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
1700
@property (nonatomic, copy) NSString *name;
1701 1702 1703 1704 1705
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
1706
@property (nonatomic, copy) NSString *number;
1707
/**
勾芒's avatar
勾芒 committed
1708
 * 方法: 取得java.lang.String
1709 1710
 *
 *
曹云霄's avatar
曹云霄 committed
1711
 */
勾芒's avatar
勾芒 committed
1712
@property (nonatomic, copy) NSString *categoryId;
1713
/**
勾芒's avatar
勾芒 committed
1714
 * 方法: 取得java.lang.String
1715 1716 1717
 *
 *
 */
勾芒's avatar
勾芒 committed
1718
@property (nonatomic, copy) NSString *brandId;
1719 1720 1721 1722 1723
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
1724
@property (nonatomic, copy) NSString *keyword;
1725
/**
勾芒's avatar
勾芒 committed
1726
 * 方法: 取得java.math.BigDecimal
1727 1728 1729
 *
 *
 */
勾芒's avatar
勾芒 committed
1730
@property (nonatomic, strong) NSNumber *guidePrice;
1731
/**
勾芒's avatar
勾芒 committed
1732 1733 1734
 * 方法: 取得java.math.BigDecimal
 *
 *
1735
 */
勾芒's avatar
勾芒 committed
1736
@property (nonatomic, strong) NSNumber *tagPrice;
1737
/**
勾芒's avatar
勾芒 committed
1738
 * 方法: 取得java.math.BigDecimal
1739 1740 1741
 *
 *
 */
勾芒's avatar
勾芒 committed
1742
@property (nonatomic, strong) NSNumber *costPrice;
1743
/**
勾芒's avatar
勾芒 committed
1744
 * 方法: 取得java.lang.String
1745 1746
 *
 *
曹云霄's avatar
曹云霄 committed
1747
 */
勾芒's avatar
勾芒 committed
1748
@property (nonatomic, copy) NSString *state;
1749
/**
勾芒's avatar
勾芒 committed
1750
 * 方法: 取得java.lang.Integer
1751 1752
 *
 *
曹云霄's avatar
曹云霄 committed
1753
 */
1754
@property (nonatomic, assign) NSInteger inv;
1755
/**
勾芒's avatar
勾芒 committed
1756
 * 方法: 取得java.lang.String
1757 1758
 *
 *
曹云霄's avatar
曹云霄 committed
1759
 */
勾芒's avatar
勾芒 committed
1760
@property (nonatomic, copy) NSString *detailedIntro;
1761
/**
勾芒's avatar
勾芒 committed
1762
 * 方法: 取得java.lang.Double
1763 1764 1765
 *
 *
 */
勾芒's avatar
勾芒 committed
1766
@property (nonatomic, assign) double weight;
勾芒's avatar
勾芒 committed
1767 1768 1769 1770 1771
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
1772
@property (nonatomic, copy) NSString *unit;
勾芒's avatar
勾芒 committed
1773
/**
勾芒's avatar
勾芒 committed
1774
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
1775 1776 1777
 *
 *
 */
勾芒's avatar
勾芒 committed
1778
@property (nonatomic, copy) NSString *productProfile;
1779
/**
勾芒's avatar
勾芒 committed
1780
 * 方法: 取得java.lang.String
1781 1782 1783
 *
 *
 */
勾芒's avatar
勾芒 committed
1784
@property (nonatomic, copy) NSString *power;
1785
/**
勾芒's avatar
勾芒 committed
1786
 * 方法: 取得java.lang.String
1787 1788
 *
 *
曹云霄's avatar
曹云霄 committed
1789
 */
勾芒's avatar
勾芒 committed
1790
@property (nonatomic, copy) NSString *colorTemperature;
1791
/**
曹云霄's avatar
曹云霄 committed
1792
 * 方法: 取得java.lang.String
1793 1794
 *
 *
曹云霄's avatar
曹云霄 committed
1795
 */
勾芒's avatar
勾芒 committed
1796
@property (nonatomic, copy) NSString *spec;
1797
/**
曹云霄's avatar
曹云霄 committed
1798
 * 方法: 取得java.lang.String
1799 1800
 *
 *
曹云霄's avatar
曹云霄 committed
1801
 */
勾芒's avatar
勾芒 committed
1802
@property (nonatomic, copy) NSString *function;
1803
/**
曹云霄's avatar
曹云霄 committed
1804
 * 方法: 取得java.lang.String
1805 1806
 *
 *
曹云霄's avatar
曹云霄 committed
1807
 */
勾芒's avatar
勾芒 committed
1808
@property (nonatomic, copy) NSString *material;
1809
/**
曹云霄's avatar
曹云霄 committed
1810
 * 方法: 取得java.lang.String
1811 1812
 *
 *
曹云霄's avatar
曹云霄 committed
1813
 */
勾芒's avatar
勾芒 committed
1814
@property (nonatomic, copy) NSString *lightSource;
1815
/**
勾芒's avatar
勾芒 committed
1816 1817 1818
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
1819
 */
勾芒's avatar
勾芒 committed
1820
@property (nonatomic, copy) NSString *goodsStyle;
1821
/**
1822
 * 方法: 取得java.lang.String
1823 1824
 *
 *
曹云霄's avatar
曹云霄 committed
1825
 */
勾芒's avatar
勾芒 committed
1826
@property (nonatomic, copy) NSString *series;
1827
/**
勾芒's avatar
勾芒 committed
1828
 * 方法: 取得java.lang.String
1829 1830
 *
 *
曹云霄's avatar
曹云霄 committed
1831
 */
勾芒's avatar
勾芒 committed
1832
@property (nonatomic, copy) NSString *area;
1833
/**
勾芒's avatar
勾芒 committed
1834
 * 方法: 取得java.lang.String
1835 1836
 *
 *
曹云霄's avatar
曹云霄 committed
1837
 */
勾芒's avatar
勾芒 committed
1838
@property (nonatomic, copy) NSString *size;
1839
/**
勾芒's avatar
勾芒 committed
1840
 * 方法: 取得java.lang.String
1841 1842
 *
 *
曹云霄's avatar
曹云霄 committed
1843
 */
勾芒's avatar
勾芒 committed
1844
@property (nonatomic, copy) NSString *space;
1845
/**
勾芒's avatar
勾芒 committed
1846
 * 方法: 取得java.lang.String
1847 1848
 *
 *
曹云霄's avatar
曹云霄 committed
1849
 */
勾芒's avatar
勾芒 committed
1850
@property (nonatomic, copy) NSString *installMethod;
1851
/**
勾芒's avatar
勾芒 committed
1852
 * 方法: 取得java.lang.String
1853 1854
 *
 *
曹云霄's avatar
曹云霄 committed
1855
 */
勾芒's avatar
勾芒 committed
1856
@property (nonatomic, copy) NSString *lightNumber;
1857
/**
曹云霄's avatar
曹云霄 committed
1858
 * 方法: 取得java.lang.String
1859 1860
 *
 *
曹云霄's avatar
曹云霄 committed
1861
 */
勾芒's avatar
勾芒 committed
1862
@property (nonatomic, copy) NSString *pictures;
1863
/**
勾芒's avatar
勾芒 committed
1864
 * 方法: 取得java.lang.String
1865 1866 1867
 *
 *
 */
勾芒's avatar
勾芒 committed
1868
@property (nonatomic, copy) NSString *barcode;
1869
@end /* interface TOGoodsEntity */
勾芒's avatar
勾芒 committed
1870 1871 1872 1873



/**
1874
 *  商品分享返回数据。
勾芒's avatar
勾芒 committed
1875
 
1876 1877
 @author Debenson
 @since 0.1
勾芒's avatar
勾芒 committed
1878 1879
 
 */
1880
@interface RsShareResponse : JSONModel
1881
/**
1882
 * 分享记录标识
1883 1884
 *
 *
曹云霄's avatar
曹云霄 committed
1885
 */
1886
@property (nonatomic, copy) NSString *shareId;
1887
/**
1888
 * 分享页面链接
1889 1890
 *
 *
曹云霄's avatar
曹云霄 committed
1891
 */
1892 1893 1894 1895 1896
@property (nonatomic, copy) NSString *url;
@end /* interface RsShareResponse */



1897
/**
1898 1899 1900
 *  @author Debenson
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
1901
 */
1902
@interface DeleteCartRequest : JSONModel
1903
/**
1904 1905
 * 购物车标识列表
 * @see NSString
1906
 *
曹云霄's avatar
曹云霄 committed
1907
 */
1908 1909
@property (nonatomic, strong) NSArray *cartIds;
@end /* interface DeleteCartRequest */
勾芒's avatar
勾芒 committed
1910 1911 1912



1913
/**
1914
 *  @author Administrator
1915
 @since 0.1
勾芒's avatar
勾芒 committed
1916
 
曹云霄's avatar
曹云霄 committed
1917
 */
1918
@interface SceneCondition : JSONModel
1919
/**
1920
 * 查询条件:风格
1921 1922
 *
 *
曹云霄's avatar
曹云霄 committed
1923
 */
1924
@property (nonatomic, copy) NSString *styleEquals;
勾芒's avatar
勾芒 committed
1925
/**
1926
 * 查询条件:空间
勾芒's avatar
勾芒 committed
1927 1928 1929
 *
 *
 */
1930
@property (nonatomic, copy) NSString *spaceEquals;
1931
/**
勾芒's avatar
勾芒 committed
1932
 * (no documentation provided)
1933
 *
1934
 *
曹云霄's avatar
曹云霄 committed
1935
 */
1936 1937
@property (nonatomic, strong) DataPage *page;
@end /* interface SceneCondition */
勾芒's avatar
勾芒 committed
1938 1939 1940



1941
/**
勾芒's avatar
勾芒 committed
1942
 *  @author Flash
勾芒's avatar
勾芒 committed
1943 1944 1945
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
1946
@interface OrderBill : JSONModel
勾芒's avatar
勾芒 committed
1947
/**
勾芒's avatar
勾芒 committed
1948
 * (no documentation provided)
勾芒's avatar
勾芒 committed
1949 1950 1951
 *
 *
 */
勾芒's avatar
勾芒 committed
1952
@property (nonatomic, strong) DataPage *datapage;
勾芒's avatar
勾芒 committed
1953
/**
勾芒's avatar
勾芒 committed
1954
 * (no documentation provided)
勾芒's avatar
勾芒 committed
1955 1956 1957
 *
 *
 */
勾芒's avatar
勾芒 committed
1958 1959 1960 1961 1962 1963 1964
@property (nonatomic, strong) TOOrderEntity *order;
/**
 * (no documentation provided)
 * @see TOOrderdetailEntity
 *
 */
@property (nonatomic, strong) NSArray<TOOrderdetailEntity> *orderdetailList;
勾芒's avatar
勾芒 committed
1965
/**
勾芒's avatar
勾芒 committed
1966
 * (no documentation provided)
勾芒's avatar
勾芒 committed
1967
 *
1968 1969
 *
 */
勾芒's avatar
勾芒 committed
1970 1971 1972 1973 1974 1975 1976 1977
@property (nonatomic, strong) TOConsumerEntity *consumer;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TOEmployee *employee;
@end /* interface OrderBill */
曹云霄's avatar
曹云霄 committed
1978

1979

曹云霄's avatar
曹云霄 committed
1980 1981

/**
勾芒's avatar
勾芒 committed
1982 1983
 *  @author NuoSa
 
曹云霄's avatar
曹云霄 committed
1984
 @since 0.1
1985
 
曹云霄's avatar
曹云霄 committed
1986
 */
勾芒's avatar
勾芒 committed
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029
@interface GoodsCondition : JSONModel
/**
 * 查询条件是 商品名称
 *
 *
 */
@property (nonatomic, copy) NSString *nameLike;
/**
 * 查询条件是 类型id,取值: GoodsCategory#getId()
 *
 *
 */
@property (nonatomic, copy) NSString *categoryEquals;
/**
 * 查询条件是 风格
 *
 *
 */
@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;
2030 2031
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
2032
 *
2033
 *
曹云霄's avatar
曹云霄 committed
2034
 */
勾芒's avatar
勾芒 committed
2035 2036
@property (nonatomic, strong) DataPage *page;
@end /* interface GoodsCondition */
2037 2038 2039 2040



/**
勾芒's avatar
勾芒 committed
2041
 *  @author Administrator
2042 2043
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
2044
 */
勾芒's avatar
勾芒 committed
2045
@interface DataDict : JSONModel
2046
/**
勾芒's avatar
勾芒 committed
2047
 * (no documentation provided)
2048 2049
 *
 *
曹云霄's avatar
曹云霄 committed
2050
 */
勾芒's avatar
勾芒 committed
2051
@property (nonatomic, copy) NSString *typename;
2052
/**
勾芒's avatar
勾芒 committed
2053
 * (no documentation provided)
2054 2055
 *
 *
曹云霄's avatar
曹云霄 committed
2056
 */
勾芒's avatar
勾芒 committed
2057 2058
@property (nonatomic, copy) NSString *typecode;
@end /* interface DataDict */
曹云霄's avatar
曹云霄 committed
2059

2060

曹云霄's avatar
曹云霄 committed
2061 2062 2063 2064 2065 2066

/**
 *  重置密码请求。
 
 @author Debenson
 @since 0.1
2067
 
曹云霄's avatar
曹云霄 committed
2068 2069
 */
@interface ResetPasswordRequest : JSONModel
2070
/**
曹云霄's avatar
曹云霄 committed
2071
 * 用户名
2072 2073
 *
 *
曹云霄's avatar
曹云霄 committed
2074 2075
 */
@property (nonatomic, copy) NSString *username;
2076 2077 2078 2079 2080 2081 2082
/**
 * 短信验证码,请先调用发送短信接口
 * com.gomore.opple.rest.system.RsSystemService#sendSms(String)
 *
 *
 */
@property (nonatomic, copy) NSString *smsCode;
2083
/**
曹云霄's avatar
曹云霄 committed
2084
 * 新密码
2085 2086
 *
 *
曹云霄's avatar
曹云霄 committed
2087 2088 2089 2090 2091
 */
@property (nonatomic, copy) NSString *fnewPassword;
@end /* interface ResetPasswordRequest */


2092

曹云霄's avatar
曹云霄 committed
2093 2094 2095 2096 2097
/**
 *  登录结果。
 
 @author Debenson
 @since 0.1
2098
 
曹云霄's avatar
曹云霄 committed
2099 2100
 */
@interface LoginResult : JSONModel
2101
/**
曹云霄's avatar
曹云霄 committed
2102
 * 员工
2103 2104
 *
 *
曹云霄's avatar
曹云霄 committed
2105 2106
 */
@property (nonatomic, strong) TOEmployee *employee;
2107
/**
曹云霄's avatar
曹云霄 committed
2108
 * 分成比例
2109 2110
 *
 *
曹云霄's avatar
曹云霄 committed
2111
 */
2112
@property (nonatomic, strong) NSNumber *commission;
曹云霄's avatar
曹云霄 committed
2113 2114
@end /* interface LoginResult */

2115

曹云霄's avatar
曹云霄 committed
2116 2117

/**
2118 2119 2120
 *  客户查询条件。
 
 @author Debenson
曹云霄's avatar
曹云霄 committed
2121
 @since 0.1
2122
 
曹云霄's avatar
曹云霄 committed
2123 2124
 */
@interface ConsumerQueryCondition : JSONModel
勾芒's avatar
勾芒 committed
2125 2126 2127 2128 2129 2130
/**
 * 经销商代码等于
 *
 *
 */
@property (nonatomic, copy) NSString *resellerCodeEquals;
2131
/**
曹云霄's avatar
曹云霄 committed
2132
 * 名称等于
2133 2134
 *
 *
曹云霄's avatar
曹云霄 committed
2135 2136
 */
@property (nonatomic, copy) NSString *nameEquals;
2137
/**
曹云霄's avatar
曹云霄 committed
2138
 * 手机号等于
2139 2140
 *
 *
曹云霄's avatar
曹云霄 committed
2141 2142
 */
@property (nonatomic, copy) NSString *mobileEquals;
勾芒's avatar
勾芒 committed
2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154
/**
 * 创建时间起始于,格式: yyyy-MM-dd HH:mm:ss
 *
 *
 */
@property (nonatomic, copy) NSString *createTimeBegin;
/**
 * 创建时间截止于,格式: yyyy-MM-dd HH:mm:ss
 *
 *
 */
@property (nonatomic, copy) NSString *createTimeEnd;
2155
/**
曹云霄's avatar
曹云霄 committed
2156
 * 分布查询条件, 可空
2157 2158
 *
 *
曹云霄's avatar
曹云霄 committed
2159 2160 2161 2162 2163
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface ConsumerQueryCondition */


2164

曹云霄's avatar
曹云霄 committed
2165 2166 2167 2168 2169
/**
 *  异常代码。
 
 @author Debenson
 @since 0.1
2170
 
曹云霄's avatar
曹云霄 committed
2171 2172
 */
@interface ExceptionCode : JSONModel
2173
/**
曹云霄's avatar
曹云霄 committed
2174
 * 异常代码
2175 2176
 *
 *
曹云霄's avatar
曹云霄 committed
2177
 */
2178
@property (nonatomic, assign) NSInteger code;
2179
/**
曹云霄's avatar
曹云霄 committed
2180
 * 异常信息
2181 2182
 *
 *
曹云霄's avatar
曹云霄 committed
2183 2184 2185 2186
 */
@property (nonatomic, copy) NSString *message;
@end /* interface ExceptionCode */

2187

曹云霄's avatar
曹云霄 committed
2188 2189 2190 2191 2192 2193

/**
 *  easyui的datagrid向后台传递参数使用的model
 
 @author
 
2194
 
曹云霄's avatar
曹云霄 committed
2195 2196
 */
@interface DataPage : JSONModel
2197
/**
曹云霄's avatar
曹云霄 committed
2198
 * (no documentation provided)
2199 2200
 *
 *
曹云霄's avatar
曹云霄 committed
2201
 */
2202
@property (nonatomic, assign) NSInteger total;
2203
/**
曹云霄's avatar
曹云霄 committed
2204
 * (no documentation provided)
2205 2206
 *
 *
曹云霄's avatar
曹云霄 committed
2207
 */
2208
@property (nonatomic, assign) NSInteger page;
2209
/**
曹云霄's avatar
曹云霄 committed
2210
 * (no documentation provided)
2211 2212
 *
 *
曹云霄's avatar
曹云霄 committed
2213
 */
2214
@property (nonatomic, assign) NSInteger rows;
2215
/**
曹云霄's avatar
曹云霄 committed
2216
 * (no documentation provided)
2217 2218
 *
 *
曹云霄's avatar
曹云霄 committed
2219 2220
 */
@property (nonatomic, copy) NSString *sort;
2221
/**
曹云霄's avatar
曹云霄 committed
2222
 * (no documentation provided)
2223 2224
 *
 * 取值: SORTDIRECTION_ASC, SORTDIRECTION_DESC,
曹云霄's avatar
曹云霄 committed
2225 2226 2227 2228 2229 2230 2231 2232 2233
 */
@property (nonatomic, copy) NSString *order;
@end /* interface DataPage */



/**
 *  系统用户父类表
 @author  张代浩
2234
 
曹云霄's avatar
曹云霄 committed
2235 2236
 */
@interface TSBaseUser : IdEntity
2237
/**
曹云霄's avatar
曹云霄 committed
2238
 * (no documentation provided)
2239 2240
 *
 *
曹云霄's avatar
曹云霄 committed
2241 2242
 */
@property (nonatomic, copy) NSString *departid;
2243
/**
曹云霄's avatar
曹云霄 committed
2244
 * (no documentation provided)
2245 2246
 *
 *
曹云霄's avatar
曹云霄 committed
2247
 */
2248
@property (nonatomic, strong) NSData *signature;
2249
/**
曹云霄's avatar
曹云霄 committed
2250
 * (no documentation provided)
2251 2252
 *
 *
曹云霄's avatar
曹云霄 committed
2253 2254
 */
@property (nonatomic, copy) NSString *browser;
2255
/**
曹云霄's avatar
曹云霄 committed
2256
 * (no documentation provided)
2257 2258
 *
 *
曹云霄's avatar
曹云霄 committed
2259 2260
 */
@property (nonatomic, copy) NSString *userKey;
2261
/**
曹云霄's avatar
曹云霄 committed
2262
 * (no documentation provided)
2263 2264
 *
 *
曹云霄's avatar
曹云霄 committed
2265 2266
 */
@property (nonatomic, assign) short status;
2267
/**
曹云霄's avatar
曹云霄 committed
2268
 * (no documentation provided)
2269 2270
 *
 *
曹云霄's avatar
曹云霄 committed
2271 2272
 */
@property (nonatomic, assign) short activitiSync;
2273
/**
曹云霄's avatar
曹云霄 committed
2274
 * (no documentation provided)
2275 2276
 *
 *
曹云霄's avatar
曹云霄 committed
2277 2278
 */
@property (nonatomic, copy) NSString *password;
2279
/**
曹云霄's avatar
曹云霄 committed
2280
 * (no documentation provided)
2281 2282
 *
 *
曹云霄's avatar
曹云霄 committed
2283 2284
 */
@property (nonatomic, copy) NSString *userName;
2285
/**
曹云霄's avatar
曹云霄 committed
2286
 * (no documentation provided)
2287 2288
 *
 *
曹云霄's avatar
曹云霄 committed
2289 2290
 */
@property (nonatomic, copy) NSString *realName;
2291
/**
曹云霄's avatar
曹云霄 committed
2292
 * (no documentation provided)
2293 2294
 *
 *
曹云霄's avatar
曹云霄 committed
2295 2296
 */
@property (nonatomic, strong) TSDepart *currentDepart;
2297
/**
曹云霄's avatar
曹云霄 committed
2298 2299
 * (no documentation provided)
 * @see TSUserOrg
2300
 *
曹云霄's avatar
曹云霄 committed
2301 2302 2303 2304
 */
@property (nonatomic, strong) NSArray<TSUserOrg> *userOrgList;
@end /* interface TSBaseUser */

2305

曹云霄's avatar
曹云霄 committed
2306 2307 2308 2309

/**
 *  部门机构表
 @author  张代浩
2310
 
曹云霄's avatar
曹云霄 committed
2311 2312
 */
@interface TSDepart : IdEntity
2313
/**
曹云霄's avatar
曹云霄 committed
2314
 * (no documentation provided)
2315 2316
 *
 *
曹云霄's avatar
曹云霄 committed
2317 2318
 */
@property (nonatomic, strong) TSDepart *TSPDepart;
2319
/**
曹云霄's avatar
曹云霄 committed
2320
 * (no documentation provided)
2321 2322
 *
 *
曹云霄's avatar
曹云霄 committed
2323 2324
 */
@property (nonatomic, copy) NSString *departname;
2325
/**
曹云霄's avatar
曹云霄 committed
2326
 * (no documentation provided)
2327 2328
 *
 *
曹云霄's avatar
曹云霄 committed
2329 2330
 */
@property (nonatomic, copy) NSString *fdescription;
2331
/**
曹云霄's avatar
曹云霄 committed
2332 2333
 * (no documentation provided)
 * @see TSDepart
2334
 *
曹云霄's avatar
曹云霄 committed
2335 2336
 */
@property (nonatomic, strong) NSArray<TSDepart> *TSDeparts;
2337
/**
曹云霄's avatar
曹云霄 committed
2338
 * (no documentation provided)
2339 2340
 *
 *
曹云霄's avatar
曹云霄 committed
2341 2342
 */
@property (nonatomic, copy) NSString *orgCode;
2343
/**
曹云霄's avatar
曹云霄 committed
2344
 * (no documentation provided)
2345 2346
 *
 *
曹云霄's avatar
曹云霄 committed
2347 2348
 */
@property (nonatomic, copy) NSString *orgType;
2349
/**
曹云霄's avatar
曹云霄 committed
2350
 * (no documentation provided)
2351 2352
 *
 *
曹云霄's avatar
曹云霄 committed
2353 2354
 */
@property (nonatomic, copy) NSString *mobile;
2355
/**
曹云霄's avatar
曹云霄 committed
2356
 * (no documentation provided)
2357 2358
 *
 *
曹云霄's avatar
曹云霄 committed
2359 2360
 */
@property (nonatomic, copy) NSString *fax;
2361
/**
曹云霄's avatar
曹云霄 committed
2362
 * (no documentation provided)
2363 2364
 *
 *
曹云霄's avatar
曹云霄 committed
2365 2366 2367 2368 2369
 */
@property (nonatomic, copy) NSString *address;
@end /* interface TSDepart */


2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395

/**
 *  用户-组织机构 实体
 <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 */


2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414

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



2415
/**
勾芒's avatar
勾芒 committed
2416
 *  @author Administrator
2417 2418 2419
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
2420
@interface SceneResponse : PageRows
2421 2422
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
2423
 * @see TOSceneEntity
2424 2425
 *
 */
勾芒's avatar
勾芒 committed
2426 2427
@property (nonatomic, strong) NSArray<TOSceneEntity> *list;
@end /* interface SceneResponse */
2428 2429


曹云霄's avatar
曹云霄 committed
2430 2431 2432 2433 2434 2435

/**
 *  订单返回对象
 
 @author wsx
 @since 0.1
2436
 
曹云霄's avatar
曹云霄 committed
2437 2438
 */
@interface OrderResponse : PageRows
2439
/**
曹云霄's avatar
曹云霄 committed
2440 2441
 * (no documentation provided)
 * @see OrderBill
2442
 *
曹云霄's avatar
曹云霄 committed
2443 2444 2445 2446 2447
 */
@property (nonatomic, strong) NSArray<OrderBill> *orderBillList;
@end /* interface OrderResponse */


2448

曹云霄's avatar
曹云霄 committed
2449 2450 2451 2452
/**
 *  @author NuoSa
 
 @since 0.1
2453
 
曹云霄's avatar
曹云霄 committed
2454 2455
 */
@interface GoodsResponse : PageRows
2456
/**
曹云霄's avatar
曹云霄 committed
2457 2458
 * 商品列表
 * @see TOGoodsEntity
2459
 *
曹云霄's avatar
曹云霄 committed
2460 2461 2462 2463
 */
@property (nonatomic, strong) NSArray<TOGoodsEntity> *goodsEntity;
@end /* interface GoodsResponse */

2464

曹云霄's avatar
曹云霄 committed
2465 2466 2467 2468 2469 2470

/**
 *  客户分页查询结果。
 
 @author Debenson
 @since 0.1
2471
 
曹云霄's avatar
曹云霄 committed
2472 2473
 */
@interface ConsumerPageResult : PageRows
2474
/**
曹云霄's avatar
曹云霄 committed
2475 2476
 * 客户列表
 * @see TOConsumerEntity
2477
 *
曹云霄's avatar
曹云霄 committed
2478 2479 2480 2481 2482
 */
@property (nonatomic, strong) NSArray<TOConsumerEntity> *results;
@end /* interface ConsumerPageResult */


2483

曹云霄's avatar
曹云霄 committed
2484 2485
/**
 *  系统用户表
勾芒's avatar
勾芒 committed
2486 2487
 
 @author 张代浩
2488
 
曹云霄's avatar
曹云霄 committed
2489 2490
 */
@interface TSUser : TSBaseUser
2491
/**
曹云霄's avatar
曹云霄 committed
2492
 * (no documentation provided)
2493 2494
 *
 *
曹云霄's avatar
曹云霄 committed
2495 2496
 */
@property (nonatomic, copy) NSString *signatureFile;
2497
/**
曹云霄's avatar
曹云霄 committed
2498
 * (no documentation provided)
2499 2500
 *
 *
曹云霄's avatar
曹云霄 committed
2501 2502
 */
@property (nonatomic, copy) NSString *mobilePhone;
2503
/**
曹云霄's avatar
曹云霄 committed
2504
 * (no documentation provided)
2505 2506
 *
 *
曹云霄's avatar
曹云霄 committed
2507 2508
 */
@property (nonatomic, copy) NSString *officePhone;
2509
/**
曹云霄's avatar
曹云霄 committed
2510
 * (no documentation provided)
2511 2512
 *
 *
曹云霄's avatar
曹云霄 committed
2513 2514
 */
@property (nonatomic, copy) NSString *email;
2515
/**
曹云霄's avatar
曹云霄 committed
2516
 * 方法: 取得java.util.Date
2517 2518
 *
 *
曹云霄's avatar
曹云霄 committed
2519
 */
勾芒's avatar
勾芒 committed
2520
@property (nonatomic, copy) NSString *createDate;
2521
/**
曹云霄's avatar
曹云霄 committed
2522
 * 方法: 取得java.lang.String
2523 2524
 *
 *
曹云霄's avatar
曹云霄 committed
2525 2526
 */
@property (nonatomic, copy) NSString *createBy;
2527
/**
曹云霄's avatar
曹云霄 committed
2528
 * 方法: 取得java.lang.String
2529 2530
 *
 *
曹云霄's avatar
曹云霄 committed
2531 2532
 */
@property (nonatomic, copy) NSString *createName;
2533
/**
曹云霄's avatar
曹云霄 committed
2534
 * 方法: 取得java.util.Date
2535 2536
 *
 *
曹云霄's avatar
曹云霄 committed
2537
 */
勾芒's avatar
勾芒 committed
2538
@property (nonatomic, copy) NSString *updateDate;
2539
/**
曹云霄's avatar
曹云霄 committed
2540
 * 方法: 取得java.lang.String
2541 2542
 *
 *
曹云霄's avatar
曹云霄 committed
2543 2544
 */
@property (nonatomic, copy) NSString *updateBy;
2545
/**
曹云霄's avatar
曹云霄 committed
2546
 * 方法: 取得java.lang.String
2547 2548
 *
 *
曹云霄's avatar
曹云霄 committed
2549 2550
 */
@property (nonatomic, copy) NSString *updateName;
勾芒's avatar
勾芒 committed
2551 2552 2553 2554 2555 2556
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *position;
曹云霄's avatar
曹云霄 committed
2557 2558
@end /* interface TSUser */

2559

曹云霄's avatar
曹云霄 committed
2560 2561 2562 2563 2564 2565

/**
 *  经销商员工。
 
 @author Debenson
 @since 0.1
2566
 
曹云霄's avatar
曹云霄 committed
2567 2568
 */
@interface TOEmployee : TSUser
2569
/**
曹云霄's avatar
曹云霄 committed
2570
 * 职位编码列表, (多个职位编码用逗号分隔,非必填)
2571 2572
 *
 *
曹云霄's avatar
曹云霄 committed
2573 2574
 */
@property (nonatomic, copy) NSString *positions;
勾芒's avatar
勾芒 committed
2575 2576 2577 2578 2579 2580
/**
 * 个人头像
 *
 *
 */
@property (nonatomic, copy) NSString *picture;
2581 2582 2583 2584 2585 2586
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *positionsName;
曹云霄's avatar
曹云霄 committed
2587 2588 2589
@end /* interface TOEmployee */