opple_objc_json_client.h 42.3 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
@property (nonatomic, copy) NSString *consumerNameOrMobileEquals;
勾芒's avatar
勾芒 committed
371
/**
372 373
 * 客户标识等于
 *
勾芒's avatar
勾芒 committed
374
 *
375 376 377 378
 */
@property (nonatomic, copy) NSString *consumerIdEquals;
/**
 * 分页数据
勾芒's avatar
勾芒 committed
379 380 381
 *
 *
 */
382 383 384 385 386 387 388 389 390 391 392 393 394
@property (nonatomic, strong) DataPage *dp;
@end /* interface OrderFilter */



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


勾芒's avatar
勾芒 committed
440 441 442 443 444 445

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


曹云霄's avatar
曹云霄 committed
462 463

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



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



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



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



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



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



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


956

957
/**
勾芒's avatar
勾芒 committed
958
 *  @Title: Entity
959
 @Description: 订单详情
勾芒's avatar
勾芒 committed
960
 @author onlineGenerator
961
 @date 2016-05-06 12:53:09
勾芒's avatar
勾芒 committed
962 963 964
 @version V1.0
 
 
965
 */
966
@interface TOOrderdetailEntity : JSONModel
967 968 969 970 971
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
972
@property (nonatomic, copy) NSString *fid;
973 974 975 976 977
/**
 * 方法: 取得java.lang.String
 *
 *
 */
978
@property (nonatomic, copy) NSString *goodsId;
979
/**
980 981 982
 * 方法: 取得java.lang.String
 *
 *
983
 */
984
@property (nonatomic, copy) NSString *goodsCode;
985
/**
986
 * 方法: 取得java.lang.String
987 988 989
 *
 *
 */
990
@property (nonatomic, copy) NSString *goodsName;
991 992 993 994 995
/**
 * 方法: 取得java.lang.String
 *
 *
 */
996
@property (nonatomic, copy) NSString *goodsCover;
997
/**
998
 * 方法: 取得java.lang.String
999 1000
 *
 *
曹云霄's avatar
曹云霄 committed
1001
 */
1002
@property (nonatomic, copy) NSString *goodsSpec;
1003
/**
1004
 * 方法: 取得java.lang.String
1005 1006 1007
 *
 *
 */
1008
@property (nonatomic, copy) NSString *goodsBrand;
1009 1010 1011 1012 1013
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1014
@property (nonatomic, copy) NSString *goodsNum;
勾芒's avatar
勾芒 committed
1015
/**
1016
 * 方法: 取得java.math.BigDecimal
勾芒's avatar
勾芒 committed
1017 1018 1019
 *
 *
 */
1020
@property (nonatomic, strong) NSNumber *goodsPrice;
1021
/**
1022
 * 方法: 取得java.math.BigDecimal
1023 1024 1025
 *
 *
 */
1026
@property (nonatomic, strong) NSNumber *goodsTotalPrice;
勾芒's avatar
勾芒 committed
1027
/**
1028
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
1029 1030 1031
 *
 *
 */
1032
@property (nonatomic, copy) NSString *orderId;
勾芒's avatar
勾芒 committed
1033 1034 1035 1036 1037
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1038
@property (nonatomic, copy) NSString *goodsUnit;
1039
/**
勾芒's avatar
勾芒 committed
1040 1041 1042
 * 方法: 取得java.lang.String
 *
 *
1043
 */
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
@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
1059
/**
1060
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
1061 1062 1063
 *
 *
 */
1064
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
1065
/**
1066
 * 方法: 取得java.lang.String
1067 1068 1069
 *
 *
 */
1070
@property (nonatomic, copy) NSString *sceneCode;
1071
/**
1072
 * 方法: 取得java.lang.String
1073 1074 1075
 *
 *
 */
1076
@property (nonatomic, copy) NSString *name;
1077 1078 1079 1080 1081
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1082
@property (nonatomic, copy) NSString *pricure;
1083
/**
勾芒's avatar
勾芒 committed
1084
 * 方法: 取得java.lang.String
1085 1086 1087
 *
 *
 */
1088
@property (nonatomic, copy) NSString *category;
1089
/**
1090
 * 方法: 取得java.lang.String
1091 1092 1093
 *
 *
 */
1094
@property (nonatomic, copy) NSString *style;
1095 1096 1097 1098 1099
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1100 1101 1102 1103 1104
@property (nonatomic, copy) NSString *space;
@end /* interface TOSceneEntity */



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



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


1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220

/**
 *  @Title: Entity
 @Description: t_o_shipping_addr
 @author onlineGenerator
 @date 2016-05-14 16:14:15
 @version V1.0
 
 
 */
@interface TOShippingAddrEntity : JSONModel
1221
/**
勾芒's avatar
勾芒 committed
1222
 * 方法: 取得java.lang.String
1223 1224
 *
 *
曹云霄's avatar
曹云霄 committed
1225
 */
1226 1227 1228 1229 1230 1231 1232
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
1233
/**
曹云霄's avatar
曹云霄 committed
1234
 * 方法: 取得java.lang.String
1235 1236
 *
 *
曹云霄's avatar
曹云霄 committed
1237
 */
1238
@property (nonatomic, copy) NSString *sysOrgCode;
勾芒's avatar
勾芒 committed
1239 1240 1241 1242 1243
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1244 1245 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
@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
1282 1283 1284



1285
/**
勾芒's avatar
勾芒 committed
1286
 *  @Title: Entity
1287
 @Description: 经销商员工职位
勾芒's avatar
勾芒 committed
1288
 @author onlineGenerator
1289
 @date 2016-05-02 17:39:21
勾芒's avatar
勾芒 committed
1290 1291 1292
 @version V1.0
 
 
勾芒's avatar
勾芒 committed
1293
 */
1294
@interface TOPositionEntity : JSONModel
1295
/**
1296
 * 方法: 取得java.lang.String
1297 1298 1299
 *
 *
 */
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
@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;
1319 1320 1321 1322 1323 1324
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) NSNumber *lowestDiscount;
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
/**
 * 方法: 取得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
1345
/**
勾芒's avatar
勾芒 committed
1346
 * 方法: 取得java.lang.String
1347 1348
 *
 *
曹云霄's avatar
曹云霄 committed
1349
 */
勾芒's avatar
勾芒 committed
1350
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
1351 1352 1353 1354 1355
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1356
@property (nonatomic, copy) NSString *createName;
勾芒's avatar
勾芒 committed
1357 1358 1359 1360 1361
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1362
@property (nonatomic, copy) NSString *createBy;
勾芒's avatar
勾芒 committed
1363
/**
1364
 * 方法: 取得java.util.Date
勾芒's avatar
勾芒 committed
1365 1366 1367
 *
 *
 */
1368
@property (nonatomic, copy) NSString *createDate;
勾芒's avatar
勾芒 committed
1369 1370 1371 1372 1373
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1374
@property (nonatomic, copy) NSString *updateName;
勾芒's avatar
勾芒 committed
1375
/**
1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1392
@property (nonatomic, copy) NSString *sysOrgCode;
1393
/**
1394
 * 方法: 取得java.lang.String
1395 1396 1397
 *
 *
 */
1398
@property (nonatomic, copy) NSString *orderNumber;
1399
/**
1400
 * 方法: 取得java.util.Date
1401 1402 1403
 *
 *
 */
1404
@property (nonatomic, copy) NSString *orderTime;
1405 1406 1407 1408 1409
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1410
@property (nonatomic, copy) NSString *guideId;
1411 1412 1413 1414 1415
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1416
@property (nonatomic, copy) NSString *orderState;
1417
/**
1418 1419 1420
 * 方法: 取得java.lang.String
 *
 *
1421
 */
1422
@property (nonatomic, copy) NSString *consumerId;
1423
/**
1424
 * 方法: 取得java.lang.String
1425 1426 1427
 *
 *
 */
1428
@property (nonatomic, copy) NSString *goodsNum;
1429
/**
1430 1431 1432
 * 方法: 取得java.math.BigDecimal
 *
 *
勾芒's avatar
勾芒 committed
1433
 */
1434
@property (nonatomic, strong) NSNumber *orderPrice;
1435
/**
曹云霄's avatar
曹云霄 committed
1436
 * 方法: 取得java.lang.String
1437 1438
 *
 *
曹云霄's avatar
曹云霄 committed
1439
 */
1440
@property (nonatomic, copy) NSString *receiverName;
1441
/**
勾芒's avatar
勾芒 committed
1442
 * 方法: 取得java.lang.String
1443 1444
 *
 *
曹云霄's avatar
曹云霄 committed
1445
 */
1446
@property (nonatomic, copy) NSString *receiverMobile;
1447
/**
曹云霄's avatar
曹云霄 committed
1448
 * 方法: 取得java.lang.String
1449 1450
 *
 *
曹云霄's avatar
曹云霄 committed
1451
 */
1452
@property (nonatomic, copy) NSString *receiverAddress;
1453
/**
曹云霄's avatar
曹云霄 committed
1454
 * 方法: 取得java.lang.String
1455 1456
 *
 *
曹云霄's avatar
曹云霄 committed
1457
 */
1458
@property (nonatomic, copy) NSString *isBill;
1459
/**
曹云霄's avatar
曹云霄 committed
1460
 * 方法: 取得java.lang.String
1461 1462
 *
 *
曹云霄's avatar
曹云霄 committed
1463
 */
1464
@property (nonatomic, copy) NSString *billType;
1465
/**
曹云霄's avatar
曹云霄 committed
1466
 * 方法: 取得java.lang.String
1467 1468
 *
 *
曹云霄's avatar
曹云霄 committed
1469
 */
1470
@property (nonatomic, copy) NSString *billTitle;
1471
/**
曹云霄's avatar
曹云霄 committed
1472
 * 方法: 取得java.lang.String
1473 1474
 *
 *
曹云霄's avatar
曹云霄 committed
1475
 */
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
@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
1496 1497 1498



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



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



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



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



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



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



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

1983

曹云霄's avatar
曹云霄 committed
1984 1985

/**
勾芒's avatar
勾芒 committed
1986 1987
 *  @author NuoSa
 
曹云霄's avatar
曹云霄 committed
1988
 @since 0.1
1989
 
曹云霄's avatar
曹云霄 committed
1990
 */
勾芒's avatar
勾芒 committed
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 2030 2031 2032 2033
@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;
2034 2035
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
2036
 *
2037
 *
曹云霄's avatar
曹云霄 committed
2038
 */
勾芒's avatar
勾芒 committed
2039 2040
@property (nonatomic, strong) DataPage *page;
@end /* interface GoodsCondition */
2041 2042 2043 2044



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

2064

曹云霄's avatar
曹云霄 committed
2065 2066 2067 2068 2069 2070

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


2096

曹云霄's avatar
曹云霄 committed
2097 2098 2099 2100 2101
/**
 *  登录结果。
 
 @author Debenson
 @since 0.1
2102
 
曹云霄's avatar
曹云霄 committed
2103 2104
 */
@interface LoginResult : JSONModel
2105
/**
曹云霄's avatar
曹云霄 committed
2106
 * 员工
2107 2108
 *
 *
曹云霄's avatar
曹云霄 committed
2109 2110
 */
@property (nonatomic, strong) TOEmployee *employee;
2111
/**
曹云霄's avatar
曹云霄 committed
2112
 * 分成比例
2113 2114
 *
 *
曹云霄's avatar
曹云霄 committed
2115
 */
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128
@property (nonatomic, strong) NSNumber *commissionRate;
/**
 * 提成金额
 *
 *
 */
@property (nonatomic, strong) NSNumber *commissionTotal;
/**
 * 最低分成比例
 *
 *
 */
@property (nonatomic, strong) NSNumber *lowestDiscount;
曹云霄's avatar
曹云霄 committed
2129 2130
@end /* interface LoginResult */

2131

曹云霄's avatar
曹云霄 committed
2132 2133

/**
2134 2135 2136
 *  客户查询条件。
 
 @author Debenson
曹云霄's avatar
曹云霄 committed
2137
 @since 0.1
2138
 
曹云霄's avatar
曹云霄 committed
2139 2140
 */
@interface ConsumerQueryCondition : JSONModel
勾芒's avatar
勾芒 committed
2141 2142 2143 2144 2145 2146
/**
 * 经销商代码等于
 *
 *
 */
@property (nonatomic, copy) NSString *resellerCodeEquals;
2147
/**
曹云霄's avatar
曹云霄 committed
2148
 * 名称等于
2149 2150
 *
 *
曹云霄's avatar
曹云霄 committed
2151 2152
 */
@property (nonatomic, copy) NSString *nameEquals;
2153
/**
曹云霄's avatar
曹云霄 committed
2154
 * 手机号等于
2155 2156
 *
 *
曹云霄's avatar
曹云霄 committed
2157 2158
 */
@property (nonatomic, copy) NSString *mobileEquals;
勾芒's avatar
勾芒 committed
2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170
/**
 * 创建时间起始于,格式: yyyy-MM-dd HH:mm:ss
 *
 *
 */
@property (nonatomic, copy) NSString *createTimeBegin;
/**
 * 创建时间截止于,格式: yyyy-MM-dd HH:mm:ss
 *
 *
 */
@property (nonatomic, copy) NSString *createTimeEnd;
2171
/**
曹云霄's avatar
曹云霄 committed
2172
 * 分布查询条件, 可空
2173 2174
 *
 *
曹云霄's avatar
曹云霄 committed
2175 2176 2177 2178 2179
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface ConsumerQueryCondition */


2180

曹云霄's avatar
曹云霄 committed
2181 2182 2183 2184 2185
/**
 *  异常代码。
 
 @author Debenson
 @since 0.1
2186
 
曹云霄's avatar
曹云霄 committed
2187 2188
 */
@interface ExceptionCode : JSONModel
2189
/**
曹云霄's avatar
曹云霄 committed
2190
 * 异常代码
2191 2192
 *
 *
曹云霄's avatar
曹云霄 committed
2193
 */
2194
@property (nonatomic, assign) NSInteger code;
2195
/**
曹云霄's avatar
曹云霄 committed
2196
 * 异常信息
2197 2198
 *
 *
曹云霄's avatar
曹云霄 committed
2199 2200 2201 2202
 */
@property (nonatomic, copy) NSString *message;
@end /* interface ExceptionCode */

2203

曹云霄's avatar
曹云霄 committed
2204 2205 2206 2207 2208 2209

/**
 *  easyui的datagrid向后台传递参数使用的model
 
 @author
 
2210
 
曹云霄's avatar
曹云霄 committed
2211 2212
 */
@interface DataPage : JSONModel
2213
/**
曹云霄's avatar
曹云霄 committed
2214
 * (no documentation provided)
2215 2216
 *
 *
曹云霄's avatar
曹云霄 committed
2217
 */
2218
@property (nonatomic, assign) NSInteger total;
2219
/**
曹云霄's avatar
曹云霄 committed
2220
 * (no documentation provided)
2221 2222
 *
 *
曹云霄's avatar
曹云霄 committed
2223
 */
2224
@property (nonatomic, assign) NSInteger page;
2225
/**
曹云霄's avatar
曹云霄 committed
2226
 * (no documentation provided)
2227 2228
 *
 *
曹云霄's avatar
曹云霄 committed
2229
 */
2230
@property (nonatomic, assign) NSInteger rows;
2231
/**
曹云霄's avatar
曹云霄 committed
2232
 * (no documentation provided)
2233 2234
 *
 *
曹云霄's avatar
曹云霄 committed
2235 2236
 */
@property (nonatomic, copy) NSString *sort;
2237
/**
曹云霄's avatar
曹云霄 committed
2238
 * (no documentation provided)
2239 2240
 *
 * 取值: SORTDIRECTION_ASC, SORTDIRECTION_DESC,
曹云霄's avatar
曹云霄 committed
2241 2242 2243 2244 2245 2246 2247 2248 2249
 */
@property (nonatomic, copy) NSString *order;
@end /* interface DataPage */



/**
 *  系统用户父类表
 @author  张代浩
2250
 
曹云霄's avatar
曹云霄 committed
2251 2252
 */
@interface TSBaseUser : IdEntity
2253
/**
曹云霄's avatar
曹云霄 committed
2254
 * (no documentation provided)
2255 2256
 *
 *
曹云霄's avatar
曹云霄 committed
2257 2258
 */
@property (nonatomic, copy) NSString *departid;
2259
/**
曹云霄's avatar
曹云霄 committed
2260
 * (no documentation provided)
2261 2262
 *
 *
曹云霄's avatar
曹云霄 committed
2263
 */
2264
@property (nonatomic, strong) NSData *signature;
2265
/**
曹云霄's avatar
曹云霄 committed
2266
 * (no documentation provided)
2267 2268
 *
 *
曹云霄's avatar
曹云霄 committed
2269 2270
 */
@property (nonatomic, copy) NSString *browser;
2271
/**
曹云霄's avatar
曹云霄 committed
2272
 * (no documentation provided)
2273 2274
 *
 *
曹云霄's avatar
曹云霄 committed
2275 2276
 */
@property (nonatomic, copy) NSString *userKey;
2277
/**
曹云霄's avatar
曹云霄 committed
2278
 * (no documentation provided)
2279 2280
 *
 *
曹云霄's avatar
曹云霄 committed
2281 2282
 */
@property (nonatomic, assign) short status;
2283
/**
曹云霄's avatar
曹云霄 committed
2284
 * (no documentation provided)
2285 2286
 *
 *
曹云霄's avatar
曹云霄 committed
2287 2288
 */
@property (nonatomic, assign) short activitiSync;
2289
/**
曹云霄's avatar
曹云霄 committed
2290
 * (no documentation provided)
2291 2292
 *
 *
曹云霄's avatar
曹云霄 committed
2293 2294
 */
@property (nonatomic, copy) NSString *password;
2295
/**
曹云霄's avatar
曹云霄 committed
2296
 * (no documentation provided)
2297 2298
 *
 *
曹云霄's avatar
曹云霄 committed
2299 2300
 */
@property (nonatomic, copy) NSString *userName;
2301
/**
曹云霄's avatar
曹云霄 committed
2302
 * (no documentation provided)
2303 2304
 *
 *
曹云霄's avatar
曹云霄 committed
2305 2306
 */
@property (nonatomic, copy) NSString *realName;
2307
/**
曹云霄's avatar
曹云霄 committed
2308
 * (no documentation provided)
2309 2310
 *
 *
曹云霄's avatar
曹云霄 committed
2311 2312
 */
@property (nonatomic, strong) TSDepart *currentDepart;
2313
/**
曹云霄's avatar
曹云霄 committed
2314 2315
 * (no documentation provided)
 * @see TSUserOrg
2316
 *
曹云霄's avatar
曹云霄 committed
2317 2318 2319 2320
 */
@property (nonatomic, strong) NSArray<TSUserOrg> *userOrgList;
@end /* interface TSBaseUser */

2321

曹云霄's avatar
曹云霄 committed
2322 2323 2324 2325

/**
 *  部门机构表
 @author  张代浩
2326
 
曹云霄's avatar
曹云霄 committed
2327 2328
 */
@interface TSDepart : IdEntity
2329
/**
曹云霄's avatar
曹云霄 committed
2330
 * (no documentation provided)
2331 2332
 *
 *
曹云霄's avatar
曹云霄 committed
2333 2334
 */
@property (nonatomic, strong) TSDepart *TSPDepart;
2335
/**
曹云霄's avatar
曹云霄 committed
2336
 * (no documentation provided)
2337 2338
 *
 *
曹云霄's avatar
曹云霄 committed
2339 2340
 */
@property (nonatomic, copy) NSString *departname;
2341
/**
曹云霄's avatar
曹云霄 committed
2342
 * (no documentation provided)
2343 2344
 *
 *
曹云霄's avatar
曹云霄 committed
2345 2346
 */
@property (nonatomic, copy) NSString *fdescription;
2347
/**
曹云霄's avatar
曹云霄 committed
2348 2349
 * (no documentation provided)
 * @see TSDepart
2350
 *
曹云霄's avatar
曹云霄 committed
2351 2352
 */
@property (nonatomic, strong) NSArray<TSDepart> *TSDeparts;
2353
/**
曹云霄's avatar
曹云霄 committed
2354
 * (no documentation provided)
2355 2356
 *
 *
曹云霄's avatar
曹云霄 committed
2357 2358
 */
@property (nonatomic, copy) NSString *orgCode;
2359
/**
曹云霄's avatar
曹云霄 committed
2360
 * (no documentation provided)
2361 2362
 *
 *
曹云霄's avatar
曹云霄 committed
2363 2364
 */
@property (nonatomic, copy) NSString *orgType;
2365
/**
曹云霄's avatar
曹云霄 committed
2366
 * (no documentation provided)
2367 2368
 *
 *
曹云霄's avatar
曹云霄 committed
2369 2370
 */
@property (nonatomic, copy) NSString *mobile;
2371
/**
曹云霄's avatar
曹云霄 committed
2372
 * (no documentation provided)
2373 2374
 *
 *
曹云霄's avatar
曹云霄 committed
2375 2376
 */
@property (nonatomic, copy) NSString *fax;
2377
/**
曹云霄's avatar
曹云霄 committed
2378
 * (no documentation provided)
2379 2380
 *
 *
曹云霄's avatar
曹云霄 committed
2381 2382 2383 2384 2385
 */
@property (nonatomic, copy) NSString *address;
@end /* interface TSDepart */


2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411

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


2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430

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



2431
/**
勾芒's avatar
勾芒 committed
2432
 *  @author Administrator
2433 2434 2435
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
2436
@interface SceneResponse : PageRows
2437 2438
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
2439
 * @see TOSceneEntity
2440 2441
 *
 */
勾芒's avatar
勾芒 committed
2442 2443
@property (nonatomic, strong) NSArray<TOSceneEntity> *list;
@end /* interface SceneResponse */
2444 2445


曹云霄's avatar
曹云霄 committed
2446 2447 2448 2449 2450 2451

/**
 *  订单返回对象
 
 @author wsx
 @since 0.1
2452
 
曹云霄's avatar
曹云霄 committed
2453 2454
 */
@interface OrderResponse : PageRows
2455
/**
曹云霄's avatar
曹云霄 committed
2456 2457
 * (no documentation provided)
 * @see OrderBill
2458
 *
曹云霄's avatar
曹云霄 committed
2459 2460 2461 2462 2463
 */
@property (nonatomic, strong) NSArray<OrderBill> *orderBillList;
@end /* interface OrderResponse */


2464

曹云霄's avatar
曹云霄 committed
2465 2466 2467 2468
/**
 *  @author NuoSa
 
 @since 0.1
2469
 
曹云霄's avatar
曹云霄 committed
2470 2471
 */
@interface GoodsResponse : PageRows
2472
/**
曹云霄's avatar
曹云霄 committed
2473 2474
 * 商品列表
 * @see TOGoodsEntity
2475
 *
曹云霄's avatar
曹云霄 committed
2476 2477 2478 2479
 */
@property (nonatomic, strong) NSArray<TOGoodsEntity> *goodsEntity;
@end /* interface GoodsResponse */

2480

曹云霄's avatar
曹云霄 committed
2481 2482 2483 2484 2485 2486

/**
 *  客户分页查询结果。
 
 @author Debenson
 @since 0.1
2487
 
曹云霄's avatar
曹云霄 committed
2488 2489
 */
@interface ConsumerPageResult : PageRows
2490
/**
曹云霄's avatar
曹云霄 committed
2491 2492
 * 客户列表
 * @see TOConsumerEntity
2493
 *
曹云霄's avatar
曹云霄 committed
2494 2495 2496 2497 2498
 */
@property (nonatomic, strong) NSArray<TOConsumerEntity> *results;
@end /* interface ConsumerPageResult */


2499

曹云霄's avatar
曹云霄 committed
2500 2501
/**
 *  系统用户表
勾芒's avatar
勾芒 committed
2502 2503
 
 @author 张代浩
2504
 
曹云霄's avatar
曹云霄 committed
2505 2506
 */
@interface TSUser : TSBaseUser
2507
/**
曹云霄's avatar
曹云霄 committed
2508
 * (no documentation provided)
2509 2510
 *
 *
曹云霄's avatar
曹云霄 committed
2511 2512
 */
@property (nonatomic, copy) NSString *signatureFile;
2513
/**
曹云霄's avatar
曹云霄 committed
2514
 * (no documentation provided)
2515 2516
 *
 *
曹云霄's avatar
曹云霄 committed
2517 2518
 */
@property (nonatomic, copy) NSString *mobilePhone;
2519
/**
曹云霄's avatar
曹云霄 committed
2520
 * (no documentation provided)
2521 2522
 *
 *
曹云霄's avatar
曹云霄 committed
2523 2524
 */
@property (nonatomic, copy) NSString *officePhone;
2525
/**
曹云霄's avatar
曹云霄 committed
2526
 * (no documentation provided)
2527 2528
 *
 *
曹云霄's avatar
曹云霄 committed
2529 2530
 */
@property (nonatomic, copy) NSString *email;
2531
/**
曹云霄's avatar
曹云霄 committed
2532
 * 方法: 取得java.util.Date
2533 2534
 *
 *
曹云霄's avatar
曹云霄 committed
2535
 */
勾芒's avatar
勾芒 committed
2536
@property (nonatomic, copy) NSString *createDate;
2537
/**
曹云霄's avatar
曹云霄 committed
2538
 * 方法: 取得java.lang.String
2539 2540
 *
 *
曹云霄's avatar
曹云霄 committed
2541 2542
 */
@property (nonatomic, copy) NSString *createBy;
2543
/**
曹云霄's avatar
曹云霄 committed
2544
 * 方法: 取得java.lang.String
2545 2546
 *
 *
曹云霄's avatar
曹云霄 committed
2547 2548
 */
@property (nonatomic, copy) NSString *createName;
2549
/**
曹云霄's avatar
曹云霄 committed
2550
 * 方法: 取得java.util.Date
2551 2552
 *
 *
曹云霄's avatar
曹云霄 committed
2553
 */
勾芒's avatar
勾芒 committed
2554
@property (nonatomic, copy) NSString *updateDate;
2555
/**
曹云霄's avatar
曹云霄 committed
2556
 * 方法: 取得java.lang.String
2557 2558
 *
 *
曹云霄's avatar
曹云霄 committed
2559 2560
 */
@property (nonatomic, copy) NSString *updateBy;
2561
/**
曹云霄's avatar
曹云霄 committed
2562
 * 方法: 取得java.lang.String
2563 2564
 *
 *
曹云霄's avatar
曹云霄 committed
2565 2566
 */
@property (nonatomic, copy) NSString *updateName;
勾芒's avatar
勾芒 committed
2567 2568 2569 2570 2571 2572
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *position;
曹云霄's avatar
曹云霄 committed
2573 2574
@end /* interface TSUser */

2575

曹云霄's avatar
曹云霄 committed
2576 2577 2578 2579 2580 2581

/**
 *  经销商员工。
 
 @author Debenson
 @since 0.1
2582
 
曹云霄's avatar
曹云霄 committed
2583 2584
 */
@interface TOEmployee : TSUser
2585
/**
曹云霄's avatar
曹云霄 committed
2586
 * 职位编码列表, (多个职位编码用逗号分隔,非必填)
2587 2588
 *
 *
曹云霄's avatar
曹云霄 committed
2589 2590
 */
@property (nonatomic, copy) NSString *positions;
勾芒's avatar
勾芒 committed
2591 2592 2593 2594 2595 2596
/**
 * 个人头像
 *
 *
 */
@property (nonatomic, copy) NSString *picture;
2597 2598 2599 2600 2601 2602
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *positionsName;
曹云霄's avatar
曹云霄 committed
2603 2604 2605
@end /* interface TOEmployee */