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

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

#ifndef DEF_SortDirection_H
#define DEF_SortDirection_H

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

#endif /* DEF_SortDirection_H */


@class PageRows;
@class RsResponse;
@class LoginInfo;
@class ModifyPasswordRequest;
30 31
@class DataDict;
@class GoodsCondition;
曹云霄's avatar
曹云霄 committed
32 33
@class GoodsFilter;
@class OrderBill;
勾芒's avatar
勾芒 committed
34
@class OrderPayRequest;
35
@class SceneFilter;
勾芒's avatar
勾芒 committed
36 37
@class RsShippingAddrEntity;
@class SaveShoppingCartRequest;
勾芒's avatar
勾芒 committed
38
@class ShopCartFilter;
勾芒's avatar
勾芒 committed
39
@class TOGoodsEntity;
40 41 42 43 44
@class TOGoodsBrandEntity;
@class TOGoodsLabelEntity;
@class TOHottagEntity;
@class TOOrderdetailEntity;
@class TOSceneEntity;
曹云霄's avatar
曹云霄 committed
45 46
@class TOShopcartEntity;
@class IdEntity;
47 48 49 50 51 52
@class TOShippingAddrEntity;
@class TOPositionEntity;
@class TOOrderEntity;
@class TOGoodsLabelCategoryEntity;
@class TOGoodsCategoryEntity;
@class VOResellerGoodsEntity;
勾芒's avatar
勾芒 committed
53 54 55
@class TOConsumerEntity;
@class DeleteCartRequest;
@class SceneCondition;
56 57
@class HotTagResponse;
@class GoodsCategory;
曹云霄's avatar
曹云霄 committed
58 59 60 61 62 63 64
@class ResetPasswordRequest;
@class LoginResult;
@class ConsumerQueryCondition;
@class ExceptionCode;
@class DataPage;
@class TSBaseUser;
@class TSDepart;
65
@class ShopCartResponse;
勾芒's avatar
勾芒 committed
66 67
@class TSUserOrg;
@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
78 79
@protocol DataDict @end
@protocol GoodsCondition @end
曹云霄's avatar
曹云霄 committed
80 81
@protocol GoodsFilter @end
@protocol OrderBill @end
勾芒's avatar
勾芒 committed
82
@protocol OrderPayRequest @end
83
@protocol SceneFilter @end
勾芒's avatar
勾芒 committed
84 85
@protocol RsShippingAddrEntity @end
@protocol SaveShoppingCartRequest @end
勾芒's avatar
勾芒 committed
86
@protocol ShopCartFilter @end
勾芒's avatar
勾芒 committed
87
@protocol TOGoodsEntity @end
88 89 90 91 92
@protocol TOGoodsBrandEntity @end
@protocol TOGoodsLabelEntity @end
@protocol TOHottagEntity @end
@protocol TOOrderdetailEntity @end
@protocol TOSceneEntity @end
曹云霄's avatar
曹云霄 committed
93 94
@protocol TOShopcartEntity @end
@protocol IdEntity @end
95 96 97 98 99 100
@protocol TOShippingAddrEntity @end
@protocol TOPositionEntity @end
@protocol TOOrderEntity @end
@protocol TOGoodsLabelCategoryEntity @end
@protocol TOGoodsCategoryEntity @end
@protocol VOResellerGoodsEntity @end
勾芒's avatar
勾芒 committed
101 102 103
@protocol TOConsumerEntity @end
@protocol DeleteCartRequest @end
@protocol SceneCondition @end
104 105
@protocol HotTagResponse @end
@protocol GoodsCategory @end
曹云霄's avatar
曹云霄 committed
106 107 108 109 110 111 112
@protocol ResetPasswordRequest @end
@protocol LoginResult @end
@protocol ConsumerQueryCondition @end
@protocol ExceptionCode @end
@protocol DataPage @end
@protocol TSBaseUser @end
@protocol TSDepart @end
113
@protocol ShopCartResponse @end
勾芒's avatar
勾芒 committed
114 115
@protocol TSUserOrg @end
@protocol SceneResponse @end
曹云霄's avatar
曹云霄 committed
116 117 118 119 120
@protocol OrderResponse @end
@protocol GoodsResponse @end
@protocol ConsumerPageResult @end
@protocol TSUser @end
@protocol TOEmployee @end
121 122


曹云霄's avatar
曹云霄 committed
123 124 125 126 127 128 129 130
#ifndef DEF_PageRows_H
#define DEF_PageRows_H

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

#endif

162

曹云霄's avatar
曹云霄 committed
163 164 165 166 167 168 169 170
#ifndef DEF_RsResponse_H
#define DEF_RsResponse_H

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

#endif

196

曹云霄's avatar
曹云霄 committed
197 198 199 200 201 202 203 204
#ifndef DEF_LoginInfo_H
#define DEF_LoginInfo_H

/**
 *  经销商用户登录信息。
 
 @author Debenson
 @since 0.1
205
 
曹云霄's avatar
曹云霄 committed
206 207
 */
@interface LoginInfo : JSONModel
208
/**
曹云霄's avatar
曹云霄 committed
209
 * 用户名
210 211
 *
 *
曹云霄's avatar
曹云霄 committed
212 213
 */
@property (nonatomic, copy) NSString *username;
214
/**
曹云霄's avatar
曹云霄 committed
215
 * 密码
216 217
 *
 *
曹云霄's avatar
曹云霄 committed
218 219 220 221 222 223
 */
@property (nonatomic, copy) NSString *password;
@end /* interface LoginInfo */

#endif

224

曹云霄's avatar
曹云霄 committed
225 226 227 228 229 230 231 232
#ifndef DEF_ModifyPasswordRequest_H
#define DEF_ModifyPasswordRequest_H

/**
 *  修改密码请求。
 
 @author Debenson
 @since 0.1
233
 
曹云霄's avatar
曹云霄 committed
234 235
 */
@interface ModifyPasswordRequest : JSONModel
236
/**
曹云霄's avatar
曹云霄 committed
237
 * 员工标识。
238 239
 *
 *
曹云霄's avatar
曹云霄 committed
240 241
 */
@property (nonatomic, copy) NSString *employeeId;
242
/**
曹云霄's avatar
曹云霄 committed
243
 * 原密码。
244 245
 *
 *
曹云霄's avatar
曹云霄 committed
246 247
 */
@property (nonatomic, copy) NSString *oldPassword;
248
/**
曹云霄's avatar
曹云霄 committed
249
 * 新密码
250 251
 *
 *
曹云霄's avatar
曹云霄 committed
252 253 254 255 256 257
 */
@property (nonatomic, copy) NSString *fnewPassword;
@end /* interface ModifyPasswordRequest */

#endif

258 259 260

#ifndef DEF_DataDict_H
#define DEF_DataDict_H
曹云霄's avatar
曹云霄 committed
261 262

/**
263
 *  @author Administrator
曹云霄's avatar
曹云霄 committed
264
 @since 0.1
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
 
 */
@interface DataDict : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *typename;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *typecode;
@end /* interface DataDict */

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

284 285 286 287 288 289 290 291 292

#ifndef DEF_GoodsCondition_H
#define DEF_GoodsCondition_H

/**
 *  @author NuoSa
 
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
293
 */
294 295 296 297 298
@interface GoodsCondition : JSONModel
/**
 * 查询条件是 商品名称
 *
 *
曹云霄's avatar
曹云霄 committed
299
 */
300 301 302 303 304
@property (nonatomic, copy) NSString *nameLike;
/**
 * 查询条件是 类型id,取值: GoodsCategory#getId()
 *
 *
曹云霄's avatar
曹云霄 committed
305
 */
306 307 308 309 310
@property (nonatomic, copy) NSString *categoryEquals;
/**
 * 查询条件是 风格
 *
 *
曹云霄's avatar
曹云霄 committed
311
 */
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
@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;
/**
勾芒's avatar
勾芒 committed
338
 * (no documentation provided)
339 340 341 342 343
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface GoodsCondition */
曹云霄's avatar
曹云霄 committed
344 345 346

#endif

347

曹云霄's avatar
曹云霄 committed
348 349 350 351 352 353
#ifndef DEF_GoodsFilter_H
#define DEF_GoodsFilter_H

/**
 *  @author Debenson
 @since 0.1
354
 
曹云霄's avatar
曹云霄 committed
355 356
 */
@interface GoodsFilter : JSONModel
357
/**
曹云霄's avatar
曹云霄 committed
358
 * 风格
359 360
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
361
 */
362 363 364
@property (nonatomic, strong) NSArray<DataDict> *styles;
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
365
 * @see GoodsCategory
366
 *
曹云霄's avatar
曹云霄 committed
367 368
 */
@property (nonatomic, strong) NSArray<GoodsCategory> *categories;
369
/**
曹云霄's avatar
曹云霄 committed
370
 * 空间
371 372
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
373
 */
374 375
@property (nonatomic, strong) NSArray<DataDict> *space;
/**
曹云霄's avatar
曹云霄 committed
376
 * 材质
377 378
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
379
 */
380 381
@property (nonatomic, strong) NSArray<DataDict> *material;
/**
曹云霄's avatar
曹云霄 committed
382
 * 价格
383 384
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
385
 */
386
@property (nonatomic, strong) NSArray<DataDict> *price;
曹云霄's avatar
曹云霄 committed
387 388 389 390 391 392 393 394 395 396 397
@end /* interface GoodsFilter */

#endif


#ifndef DEF_OrderBill_H
#define DEF_OrderBill_H

/**
 *  @author Flash
 @since 0.1
398
 
曹云霄's avatar
曹云霄 committed
399 400
 */
@interface OrderBill : JSONModel
401
/**
曹云霄's avatar
曹云霄 committed
402
 * (no documentation provided)
403 404
 *
 *
曹云霄's avatar
曹云霄 committed
405 406
 */
@property (nonatomic, strong) DataPage *datapage;
407
/**
曹云霄's avatar
曹云霄 committed
408
 * (no documentation provided)
409 410
 *
 *
曹云霄's avatar
曹云霄 committed
411 412
 */
@property (nonatomic, strong) TOOrderEntity *order;
413
/**
曹云霄's avatar
曹云霄 committed
414 415
 * (no documentation provided)
 * @see TOOrderdetailEntity
416
 *
曹云霄's avatar
曹云霄 committed
417 418
 */
@property (nonatomic, strong) NSArray<TOOrderdetailEntity> *orderdetailList;
419 420 421 422 423 424 425 426 427 428 429 430
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TOConsumerEntity *consumer;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TOEmployee *employee;
曹云霄's avatar
曹云霄 committed
431 432 433 434
@end /* interface OrderBill */

#endif

435

勾芒's avatar
勾芒 committed
436 437
#ifndef DEF_OrderPayRequest_H
#define DEF_OrderPayRequest_H
曹云霄's avatar
曹云霄 committed
438 439

/**
勾芒's avatar
勾芒 committed
440 441 442
 *  订单支付
 
 @author wsx
曹云霄's avatar
曹云霄 committed
443
 @since 0.1
444
 
曹云霄's avatar
曹云霄 committed
445
 */
勾芒's avatar
勾芒 committed
446
@interface OrderPayRequest : JSONModel
447
/**
勾芒's avatar
勾芒 committed
448
 *
449 450
 *
 *
曹云霄's avatar
曹云霄 committed
451
 */
勾芒's avatar
勾芒 committed
452
@property (nonatomic, copy) NSString *orderNumber;
453
/**
勾芒's avatar
勾芒 committed
454
 *
455 456
 *
 *
曹云霄's avatar
曹云霄 committed
457
 */
勾芒's avatar
勾芒 committed
458
@property (nonatomic, copy) NSString *oldstate;
459
/**
勾芒's avatar
勾芒 committed
460
 *
461 462
 *
 *
曹云霄's avatar
曹云霄 committed
463
 */
勾芒's avatar
勾芒 committed
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
@property (nonatomic, copy) NSString *fnewstate;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *payType;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *isbill;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *billType;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *billTitle;
@end /* interface OrderPayRequest */
曹云霄's avatar
曹云霄 committed
490 491 492

#endif

493 494 495 496 497 498 499 500 501 502 503 504

#ifndef DEF_SceneFilter_H
#define DEF_SceneFilter_H

/**
 *  @author Administrator
 @since 0.1
 
 */
@interface SceneFilter : JSONModel
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
505
 * @see DataDict
506 507
 *
 */
勾芒's avatar
勾芒 committed
508
@property (nonatomic, strong) NSArray<DataDict> *styles;
509 510
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
511
 * @see DataDict
512 513
 *
 */
勾芒's avatar
勾芒 committed
514
@property (nonatomic, strong) NSArray<DataDict> *space;
515 516 517 518 519
@end /* interface SceneFilter */

#endif


勾芒's avatar
勾芒 committed
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
#ifndef DEF_RsShippingAddrEntity_H
#define DEF_RsShippingAddrEntity_H

/**
 *  @author Administrator
 @since 0.1
 
 */
@interface RsShippingAddrEntity : JSONModel
/**
 * (no documentation provided)
 * @see TOShippingAddrEntity
 *
 */
@property (nonatomic, strong) NSArray<TOShippingAddrEntity> *list;
@end /* interface RsShippingAddrEntity */

#endif


#ifndef DEF_SaveShoppingCartRequest_H
#define DEF_SaveShoppingCartRequest_H
曹云霄's avatar
曹云霄 committed
542 543

/**
勾芒's avatar
勾芒 committed
544 545 546 547
 *  @author Debenson
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
548
@interface SaveShoppingCartRequest : JSONModel
勾芒's avatar
勾芒 committed
549
/**
勾芒's avatar
勾芒 committed
550 551
 * 消费者标识
 *
勾芒's avatar
勾芒 committed
552 553
 *
 */
勾芒's avatar
勾芒 committed
554 555 556 557 558 559
@property (nonatomic, copy) NSString *consumerId;
/**
 * 商品标识
 *
 *
 */
560
//针对多个商品  goodsId拼接商品id ,号隔开
勾芒's avatar
勾芒 committed
561 562 563 564 565 566
@property (nonatomic, copy) NSString *goodsId;
/**
 * 商品数量,>0表示添加, <0表示减少
 *
 *
 */
567
//针对多个商品  count拼接商品count ,号隔开
568
@property (nonatomic, copy) NSString *count;
勾芒's avatar
勾芒 committed
569
@end /* interface SaveShoppingCartRequest */
勾芒's avatar
勾芒 committed
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601

#endif


#ifndef DEF_ShopCartFilter_H
#define DEF_ShopCartFilter_H

/**
 *  购物车查询条件。
 
 @author Debenson
 @since 0.1
 
 */
@interface ShopCartFilter : JSONModel
/**
 * 消费者标识
 *
 *
 */
@property (nonatomic, copy) NSString *consumerId;
/**
 * 分页数据
 *
 *
 */
@property (nonatomic, strong) DataPage *dp;
@end /* interface ShopCartFilter */

#endif


勾芒's avatar
勾芒 committed
602 603
#ifndef DEF_TOGoodsEntity_H
#define DEF_TOGoodsEntity_H
勾芒's avatar
勾芒 committed
604 605

/**
勾芒's avatar
勾芒 committed
606
 *  @Title: Entity
勾芒's avatar
勾芒 committed
607
 @Description: t_o_goods
曹云霄's avatar
曹云霄 committed
608
 @author onlineGenerator
勾芒's avatar
勾芒 committed
609
 @date 2016-05-12 15:44:01
曹云霄's avatar
曹云霄 committed
610
 @version V1.0
611 612
 
 
曹云霄's avatar
曹云霄 committed
613
 */
勾芒's avatar
勾芒 committed
614
@interface TOGoodsEntity : JSONModel
615
/**
曹云霄's avatar
曹云霄 committed
616
 * 方法: 取得java.lang.String
617 618
 *
 *
曹云霄's avatar
曹云霄 committed
619 620
 */
@property (nonatomic, copy) NSString *fid;
621
/**
勾芒's avatar
勾芒 committed
622
 * 方法: 取得java.util.Date
623 624
 *
 *
曹云霄's avatar
曹云霄 committed
625
 */
勾芒's avatar
勾芒 committed
626
@property (nonatomic, copy) NSString *createDate;
627
/**
勾芒's avatar
勾芒 committed
628
 * 方法: 取得java.util.Date
629 630
 *
 *
曹云霄's avatar
曹云霄 committed
631
 */
勾芒's avatar
勾芒 committed
632
@property (nonatomic, copy) NSString *onlineTime;
633
/**
勾芒's avatar
勾芒 committed
634
 * 方法: 取得java.lang.String
635 636
 *
 *
曹云霄's avatar
曹云霄 committed
637
 */
勾芒's avatar
勾芒 committed
638
@property (nonatomic, copy) NSString *company;
639
/**
曹云霄's avatar
曹云霄 committed
640
 * 方法: 取得java.lang.String
641 642
 *
 *
曹云霄's avatar
曹云霄 committed
643
 */
勾芒's avatar
勾芒 committed
644
@property (nonatomic, copy) NSString *code;
645
/**
曹云霄's avatar
曹云霄 committed
646
 * 方法: 取得java.lang.String
647 648
 *
 *
曹云霄's avatar
曹云霄 committed
649 650
 */
@property (nonatomic, copy) NSString *name;
651
/**
曹云霄's avatar
曹云霄 committed
652
 * 方法: 取得java.lang.String
653 654
 *
 *
曹云霄's avatar
曹云霄 committed
655
 */
勾芒's avatar
勾芒 committed
656
@property (nonatomic, copy) NSString *number;
657
/**
曹云霄's avatar
曹云霄 committed
658
 * 方法: 取得java.lang.String
659 660
 *
 *
曹云霄's avatar
曹云霄 committed
661
 */
勾芒's avatar
勾芒 committed
662
@property (nonatomic, copy) NSString *categoryId;
663
/**
曹云霄's avatar
曹云霄 committed
664
 * 方法: 取得java.lang.String
665 666
 *
 *
曹云霄's avatar
曹云霄 committed
667
 */
勾芒's avatar
勾芒 committed
668
@property (nonatomic, copy) NSString *brandId;
669
/**
曹云霄's avatar
曹云霄 committed
670
 * 方法: 取得java.lang.String
671 672
 *
 *
曹云霄's avatar
曹云霄 committed
673
 */
勾芒's avatar
勾芒 committed
674
@property (nonatomic, copy) NSString *keyword;
675
/**
勾芒's avatar
勾芒 committed
676
 * 方法: 取得java.math.BigDecimal
677 678
 *
 *
曹云霄's avatar
曹云霄 committed
679
 */
勾芒's avatar
勾芒 committed
680 681 682 683 684 685 686 687 688 689 690 691 692
@property (nonatomic, strong) NSNumber *guidePrice;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *tagPrice;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *costPrice;
勾芒's avatar
勾芒 committed
693
/**
勾芒's avatar
勾芒 committed
694
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
695 696 697
 *
 *
 */
勾芒's avatar
勾芒 committed
698
@property (nonatomic, copy) NSString *state;
勾芒's avatar
勾芒 committed
699
/**
勾芒's avatar
勾芒 committed
700
 * 方法: 取得java.lang.Integer
勾芒's avatar
勾芒 committed
701 702 703
 *
 *
 */
勾芒's avatar
勾芒 committed
704
@property (nonatomic, assign) int inv;
705
/**
勾芒's avatar
勾芒 committed
706 707 708
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
709
 */
勾芒's avatar
勾芒 committed
710 711 712 713 714 715 716
@property (nonatomic, copy) NSString *detailedIntro;
/**
 * 方法: 取得java.lang.Double
 *
 *
 */
@property (nonatomic, assign) double weight;
717
/**
勾芒's avatar
勾芒 committed
718
 * 方法: 取得java.lang.String
719 720
 *
 *
曹云霄's avatar
曹云霄 committed
721
 */
勾芒's avatar
勾芒 committed
722
@property (nonatomic, copy) NSString *unit;
曹云霄's avatar
曹云霄 committed
723
/**
勾芒's avatar
勾芒 committed
724 725 726
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
727
 */
勾芒's avatar
勾芒 committed
728
@property (nonatomic, copy) NSString *productProfile;
勾芒's avatar
勾芒 committed
729
/**
勾芒's avatar
勾芒 committed
730
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
731 732 733
 *
 *
 */
勾芒's avatar
勾芒 committed
734
@property (nonatomic, copy) NSString *power;
735
/**
勾芒's avatar
勾芒 committed
736
 * 方法: 取得java.lang.String
737 738
 *
 *
曹云霄's avatar
曹云霄 committed
739
 */
勾芒's avatar
勾芒 committed
740
@property (nonatomic, copy) NSString *colorTemperature;
741
/**
曹云霄's avatar
曹云霄 committed
742
 * 方法: 取得java.lang.String
743 744
 *
 *
曹云霄's avatar
曹云霄 committed
745
 */
勾芒's avatar
勾芒 committed
746
@property (nonatomic, copy) NSString *spec;
曹云霄's avatar
曹云霄 committed
747 748
/**
 * 方法: 取得java.lang.String
749 750
 *
 *
曹云霄's avatar
曹云霄 committed
751
 */
勾芒's avatar
勾芒 committed
752
@property (nonatomic, copy) NSString *function;
753
/**
勾芒's avatar
勾芒 committed
754
 * 方法: 取得java.lang.String
755 756
 *
 *
曹云霄's avatar
曹云霄 committed
757
 */
勾芒's avatar
勾芒 committed
758
@property (nonatomic, copy) NSString *material;
759
/**
曹云霄's avatar
曹云霄 committed
760
 * 方法: 取得java.lang.String
761 762
 *
 *
曹云霄's avatar
曹云霄 committed
763
 */
勾芒's avatar
勾芒 committed
764
@property (nonatomic, copy) NSString *lightSource;
765
/**
勾芒's avatar
勾芒 committed
766
 * 方法: 取得java.lang.String
767 768
 *
 *
曹云霄's avatar
曹云霄 committed
769
 */
勾芒's avatar
勾芒 committed
770
@property (nonatomic, copy) NSString *goodsStyle;
771
/**
曹云霄's avatar
曹云霄 committed
772
 * 方法: 取得java.lang.String
773 774
 *
 *
曹云霄's avatar
曹云霄 committed
775
 */
勾芒's avatar
勾芒 committed
776
@property (nonatomic, copy) NSString *series;
777
/**
曹云霄's avatar
曹云霄 committed
778
 * 方法: 取得java.lang.String
779 780
 *
 *
曹云霄's avatar
曹云霄 committed
781
 */
勾芒's avatar
勾芒 committed
782
@property (nonatomic, copy) NSString *area;
783 784 785 786
/**
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
787
 */
勾芒's avatar
勾芒 committed
788
@property (nonatomic, copy) NSString *size;
789
/**
勾芒's avatar
勾芒 committed
790 791 792
 * 方法: 取得java.lang.String
 *
 *
793
 */
勾芒's avatar
勾芒 committed
794
@property (nonatomic, copy) NSString *space;
795 796 797 798 799
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
800
@property (nonatomic, copy) NSString *installMethod;
801 802 803 804 805
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
806
@property (nonatomic, copy) NSString *lightNumber;
807 808 809 810 811
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
812
@property (nonatomic, copy) NSString *pictures;
813 814 815 816 817
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
818 819
@property (nonatomic, copy) NSString *barcode;
@end /* interface TOGoodsEntity */
820 821 822 823

#endif


824 825
#ifndef DEF_TOGoodsBrandEntity_H
#define DEF_TOGoodsBrandEntity_H
826 827 828

/**
 *  @Title: Entity
829
 @Description: 商品品牌
830
 @author onlineGenerator
831
 @date 2016-05-05 16:14:51
832 833 834
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
835
 */
836
@interface TOGoodsBrandEntity : JSONModel
837
/**
838
 * 方法: 取得java.lang.String
839 840 841
 *
 *
 */
842
@property (nonatomic, copy) NSString *fid;
843
/**
曹云霄's avatar
曹云霄 committed
844
 * 方法: 取得java.lang.String
845 846 847
 *
 *
 */
848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872
@property (nonatomic, copy) NSString *createName;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *createBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sysOrgCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
873 874 875 876 877
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
878
@property (nonatomic, copy) NSString *code;
879 880 881 882 883
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
884
@property (nonatomic, copy) NSString *name;
885 886 887 888 889 890
/**
 * 方法: 取得java.lang.Integer
 *
 *
 */
@property (nonatomic, assign) int state;
891
/**
勾芒's avatar
勾芒 committed
892
 * 方法: 取得java.lang.String
893 894 895
 *
 *
 */
896
@property (nonatomic, copy) NSString *logo;
勾芒's avatar
勾芒 committed
897
/**
898
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
899 900 901
 *
 *
 */
902 903
@property (nonatomic, copy) NSString *fdescription;
@end /* interface TOGoodsBrandEntity */
勾芒's avatar
勾芒 committed
904 905 906 907

#endif


908 909
#ifndef DEF_TOGoodsLabelEntity_H
#define DEF_TOGoodsLabelEntity_H
勾芒's avatar
勾芒 committed
910

勾芒's avatar
勾芒 committed
911
/**
勾芒's avatar
勾芒 committed
912
 *  @Title: Entity
913
 @Description: 商品标签
勾芒's avatar
勾芒 committed
914
 @author onlineGenerator
915
 @date 2016-05-05 17:18:15
勾芒's avatar
勾芒 committed
916 917 918
 @version V1.0
 
 
勾芒's avatar
勾芒 committed
919
 */
920 921 922 923 924 925 926
@interface TOGoodsLabelEntity : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TOGoodsLabelCategoryEntity *category;
勾芒's avatar
勾芒 committed
927 928 929 930 931
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
932
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
933
/**
勾芒's avatar
勾芒 committed
934
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
935 936 937
 *
 *
 */
勾芒's avatar
勾芒 committed
938
@property (nonatomic, copy) NSString *sysOrgCode;
勾芒's avatar
勾芒 committed
939
/**
勾芒's avatar
勾芒 committed
940
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
941 942 943
 *
 *
 */
勾芒's avatar
勾芒 committed
944
@property (nonatomic, copy) NSString *sysCompanyCode;
勾芒's avatar
勾芒 committed
945 946 947 948 949
/**
 * 方法: 取得java.lang.String
 *
 *
 */
950
@property (nonatomic, copy) NSString *name;
勾芒's avatar
勾芒 committed
951 952 953 954 955
/**
 * 方法: 取得java.lang.String
 *
 *
 */
956 957
@property (nonatomic, copy) NSString *categoryId;
@end /* interface TOGoodsLabelEntity */
勾芒's avatar
勾芒 committed
958 959 960 961

#endif


962 963
#ifndef DEF_TOHottagEntity_H
#define DEF_TOHottagEntity_H
勾芒's avatar
勾芒 committed
964

965
/**
勾芒's avatar
勾芒 committed
966
 *  @Title: Entity
967
 @Description: 热门推荐
勾芒's avatar
勾芒 committed
968
 @author onlineGenerator
969
 @date 2016-05-06 16:36:36
勾芒's avatar
勾芒 committed
970 971 972
 @version V1.0
 
 
973
 */
974
@interface TOHottagEntity : JSONModel
975 976 977 978 979
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
980
@property (nonatomic, copy) NSString *fid;
981 982 983 984 985
/**
 * 方法: 取得java.lang.String
 *
 *
 */
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
@property (nonatomic, copy) NSString *name;
@end /* interface TOHottagEntity */

#endif


#ifndef DEF_TOOrderdetailEntity_H
#define DEF_TOOrderdetailEntity_H

/**
 *  @Title: Entity
 @Description: 订单详情
 @author onlineGenerator
 @date 2016-05-06 12:53:09
 @version V1.0
 
 
 */
@interface TOOrderdetailEntity : JSONModel
1005 1006 1007 1008 1009
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1010
@property (nonatomic, copy) NSString *fid;
1011
/**
1012
 * 方法: 取得java.lang.String
1013 1014
 *
 *
曹云霄's avatar
曹云霄 committed
1015
 */
1016
@property (nonatomic, copy) NSString *goodsId;
1017 1018 1019 1020 1021
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1022
@property (nonatomic, copy) NSString *goodsCode;
勾芒's avatar
勾芒 committed
1023 1024 1025 1026 1027
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1028
@property (nonatomic, copy) NSString *goodsName;
勾芒's avatar
勾芒 committed
1029
/**
1030
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
1031 1032 1033
 *
 *
 */
1034
@property (nonatomic, copy) NSString *goodsCover;
勾芒's avatar
勾芒 committed
1035 1036 1037 1038 1039
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1040
@property (nonatomic, copy) NSString *goodsSpec;
1041
/**
勾芒's avatar
勾芒 committed
1042 1043 1044
 * 方法: 取得java.lang.String
 *
 *
1045
 */
1046
@property (nonatomic, copy) NSString *goodsBrand;
1047
/**
1048
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
1049 1050 1051
 *
 *
 */
1052
@property (nonatomic, copy) NSString *goodsNum;
勾芒's avatar
勾芒 committed
1053
/**
1054
 * 方法: 取得java.math.BigDecimal
1055 1056 1057
 *
 *
 */
1058
@property (nonatomic, strong) NSNumber *goodsPrice;
1059
/**
1060
 * 方法: 取得java.math.BigDecimal
1061 1062 1063
 *
 *
 */
1064
@property (nonatomic, strong) NSNumber *goodsTotalPrice;
1065 1066 1067 1068 1069
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1070
@property (nonatomic, copy) NSString *orderId;
1071
/**
勾芒's avatar
勾芒 committed
1072
 * 方法: 取得java.lang.String
1073 1074 1075
 *
 *
 */
1076
@property (nonatomic, copy) NSString *goodsUnit;
1077
/**
1078
 * 方法: 取得java.lang.String
1079 1080 1081
 *
 *
 */
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
@property (nonatomic, copy) NSString *remark;
@end /* interface TOOrderdetailEntity */

#endif


#ifndef DEF_TOSceneEntity_H
#define DEF_TOSceneEntity_H

/**
 *  @Title: Entity
 @Description: 场景
 @author onlineGenerator
 @date 2016-05-05 18:39:39
 @version V1.0
 
 
 */
@interface TOSceneEntity : JSONModel
1101 1102 1103 1104 1105
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1106
@property (nonatomic, copy) NSString *fid;
1107
/**
勾芒's avatar
勾芒 committed
1108
 * 方法: 取得java.lang.String
1109 1110 1111
 *
 *
 */
1112
@property (nonatomic, copy) NSString *sceneCode;
曹云霄's avatar
曹云霄 committed
1113
/**
勾芒's avatar
勾芒 committed
1114 1115
 * 方法: 取得java.lang.String
 *
1116
 *
曹云霄's avatar
曹云霄 committed
1117
 */
1118
@property (nonatomic, copy) NSString *name;
1119
/**
勾芒's avatar
勾芒 committed
1120
 * 方法: 取得java.lang.String
1121 1122
 *
 *
曹云霄's avatar
曹云霄 committed
1123
 */
1124
@property (nonatomic, copy) NSString *pricure;
1125
/**
勾芒's avatar
勾芒 committed
1126
 * 方法: 取得java.lang.String
1127 1128
 *
 *
曹云霄's avatar
曹云霄 committed
1129
 */
1130
@property (nonatomic, copy) NSString *category;
1131
/**
曹云霄's avatar
曹云霄 committed
1132
 * 方法: 取得java.lang.String
1133 1134
 *
 *
曹云霄's avatar
曹云霄 committed
1135
 */
1136
@property (nonatomic, copy) NSString *style;
勾芒's avatar
勾芒 committed
1137 1138 1139 1140 1141
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1142 1143
@property (nonatomic, copy) NSString *space;
@end /* interface TOSceneEntity */
勾芒's avatar
勾芒 committed
1144 1145 1146 1147

#endif


1148 1149
#ifndef DEF_TOShopcartEntity_H
#define DEF_TOShopcartEntity_H
勾芒's avatar
勾芒 committed
1150

1151
/**
勾芒's avatar
勾芒 committed
1152
 *  @Title: Entity
1153
 @Description: t_o_shopcart
勾芒's avatar
勾芒 committed
1154
 @author onlineGenerator
1155
 @date 2016-05-13 14:26:57
勾芒's avatar
勾芒 committed
1156 1157 1158
 @version V1.0
 
 
勾芒's avatar
勾芒 committed
1159
 */
1160 1161 1162 1163 1164 1165 1166
@interface TOShopcartEntity : JSONModel
/**
 * 商品详情
 *
 *
 */
@property (nonatomic, strong) VOResellerGoodsEntity *goods;
勾芒's avatar
勾芒 committed
1167
/**
勾芒's avatar
勾芒 committed
1168
 * 方法: 取得java.lang.String
1169 1170
 *
 *
曹云霄's avatar
曹云霄 committed
1171
 */
勾芒's avatar
勾芒 committed
1172
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
1173 1174 1175 1176 1177
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1178
@property (nonatomic, copy) NSString *createName;
勾芒's avatar
勾芒 committed
1179 1180 1181 1182 1183
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1184
@property (nonatomic, copy) NSString *createBy;
勾芒's avatar
勾芒 committed
1185
/**
1186
 * 方法: 取得java.util.Date
勾芒's avatar
勾芒 committed
1187 1188 1189
 *
 *
 */
1190
@property (nonatomic, copy) NSString *createDate;
勾芒's avatar
勾芒 committed
1191 1192 1193 1194 1195
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1196
@property (nonatomic, copy) NSString *updateName;
勾芒's avatar
勾芒 committed
1197
/**
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsId;
/**
 * 方法: 取得java.lang.Integer
 *
 *
 */
@property (nonatomic, assign) int goodsNum;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *consumerId;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *resellerId;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, strong) NSNumber *costPrice;
@end /* interface TOShopcartEntity */

#endif


#ifndef DEF_IdEntity_H
#define DEF_IdEntity_H

/**
 * (no documentation provided)
 */
@interface IdEntity : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
@end /* interface IdEntity */

#endif


#ifndef DEF_TOShippingAddrEntity_H
#define DEF_TOShippingAddrEntity_H

/**
 *  @Title: Entity
勾芒's avatar
勾芒 committed
1267 1268 1269 1270 1271 1272 1273 1274
 @Description: t_o_shipping_addr
 @author onlineGenerator
 @date 2016-05-14 16:14:15
 @version V1.0
 
 
 */
@interface TOShippingAddrEntity : JSONModel
1275
/**
曹云霄's avatar
曹云霄 committed
1276
 * 方法: 取得java.lang.String
1277 1278
 *
 *
曹云霄's avatar
曹云霄 committed
1279
 */
勾芒's avatar
勾芒 committed
1280
@property (nonatomic, copy) NSString *fid;
1281
/**
勾芒's avatar
勾芒 committed
1282
 * 方法: 取得java.util.Date
1283 1284
 *
 *
曹云霄's avatar
曹云霄 committed
1285
 */
勾芒's avatar
勾芒 committed
1286
@property (nonatomic, copy) NSString *createDate;
1287
/**
勾芒's avatar
勾芒 committed
1288
 * 方法: 取得java.lang.String
1289 1290
 *
 *
曹云霄's avatar
曹云霄 committed
1291
 */
勾芒's avatar
勾芒 committed
1292
@property (nonatomic, copy) NSString *sysOrgCode;
1293
/**
曹云霄's avatar
曹云霄 committed
1294
 * 方法: 取得java.lang.String
1295 1296
 *
 *
曹云霄's avatar
曹云霄 committed
1297
 */
勾芒's avatar
勾芒 committed
1298
@property (nonatomic, copy) NSString *name;
1299
/**
曹云霄's avatar
曹云霄 committed
1300
 * 方法: 取得java.lang.String
1301 1302
 *
 *
曹云霄's avatar
曹云霄 committed
1303
 */
勾芒's avatar
勾芒 committed
1304
@property (nonatomic, copy) NSString *miblephone;
1305
/**
曹云霄's avatar
曹云霄 committed
1306
 * 方法: 取得java.lang.String
1307 1308
 *
 *
曹云霄's avatar
曹云霄 committed
1309
 */
勾芒's avatar
勾芒 committed
1310
@property (nonatomic, copy) NSString *province;
1311
/**
曹云霄's avatar
曹云霄 committed
1312
 * 方法: 取得java.lang.String
1313 1314
 *
 *
曹云霄's avatar
曹云霄 committed
1315
 */
勾芒's avatar
勾芒 committed
1316
@property (nonatomic, copy) NSString *city;
1317
/**
曹云霄's avatar
曹云霄 committed
1318
 * 方法: 取得java.lang.String
1319 1320
 *
 *
曹云霄's avatar
曹云霄 committed
1321
 */
勾芒's avatar
勾芒 committed
1322
@property (nonatomic, copy) NSString *country;
1323
/**
曹云霄's avatar
曹云霄 committed
1324
 * 方法: 取得java.lang.String
1325 1326
 *
 *
曹云霄's avatar
曹云霄 committed
1327
 */
勾芒's avatar
勾芒 committed
1328
@property (nonatomic, copy) NSString *address;
1329
/**
曹云霄's avatar
曹云霄 committed
1330
 * 方法: 取得java.lang.String
1331 1332
 *
 *
曹云霄's avatar
曹云霄 committed
1333
 */
勾芒's avatar
勾芒 committed
1334 1335
@property (nonatomic, copy) NSString *consumerId;
@end /* interface TOShippingAddrEntity */
勾芒's avatar
勾芒 committed
1336 1337 1338 1339

#endif


1340 1341
#ifndef DEF_TOPositionEntity_H
#define DEF_TOPositionEntity_H
勾芒's avatar
勾芒 committed
1342

1343
/**
勾芒's avatar
勾芒 committed
1344
 *  @Title: Entity
1345
 @Description: 经销商员工职位
勾芒's avatar
勾芒 committed
1346
 @author onlineGenerator
1347
 @date 2016-05-02 17:39:21
勾芒's avatar
勾芒 committed
1348 1349 1350
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
1351
 */
1352
@interface TOPositionEntity : JSONModel
1353
/**
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *code;
/**
 * 方法: 取得java.lang.String
1367 1368
 *
 *
曹云霄's avatar
曹云霄 committed
1369
 */
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *commission;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *resellerCode;
@end /* interface TOPositionEntity */

#endif


#ifndef DEF_TOOrderEntity_H
#define DEF_TOOrderEntity_H

/**
 *  @Title: Entity
 @Description: 订单
 @author onlineGenerator
 @date 2016-05-06 12:53:09
 @version V1.0
 
 
 */
@interface TOOrderEntity : JSONModel
1401
/**
曹云霄's avatar
曹云霄 committed
1402
 * 方法: 取得java.lang.String
1403 1404
 *
 *
曹云霄's avatar
曹云霄 committed
1405 1406
 */
@property (nonatomic, copy) NSString *fid;
1407
/**
勾芒's avatar
勾芒 committed
1408
 * 方法: 取得java.lang.String
1409 1410 1411
 *
 *
 */
勾芒's avatar
勾芒 committed
1412
@property (nonatomic, copy) NSString *createName;
1413
/**
曹云霄's avatar
曹云霄 committed
1414
 * 方法: 取得java.lang.String
1415 1416
 *
 *
曹云霄's avatar
曹云霄 committed
1417
 */
勾芒's avatar
勾芒 committed
1418
@property (nonatomic, copy) NSString *createBy;
1419
/**
勾芒's avatar
勾芒 committed
1420
 * 方法: 取得java.util.Date
1421 1422
 *
 *
曹云霄's avatar
曹云霄 committed
1423
 */
勾芒's avatar
勾芒 committed
1424
@property (nonatomic, copy) NSString *createDate;
1425
/**
曹云霄's avatar
曹云霄 committed
1426
 * 方法: 取得java.lang.String
1427 1428
 *
 *
曹云霄's avatar
曹云霄 committed
1429
 */
勾芒's avatar
勾芒 committed
1430
@property (nonatomic, copy) NSString *updateName;
1431
/**
曹云霄's avatar
曹云霄 committed
1432
 * 方法: 取得java.lang.String
1433 1434
 *
 *
曹云霄's avatar
曹云霄 committed
1435
 */
勾芒's avatar
勾芒 committed
1436
@property (nonatomic, copy) NSString *updateBy;
1437
/**
勾芒's avatar
勾芒 committed
1438
 * 方法: 取得java.util.Date
1439 1440
 *
 *
曹云霄's avatar
曹云霄 committed
1441
 */
勾芒's avatar
勾芒 committed
1442
@property (nonatomic, copy) NSString *updateDate;
1443
/**
曹云霄's avatar
曹云霄 committed
1444
 * 方法: 取得java.lang.String
1445 1446
 *
 *
曹云霄's avatar
曹云霄 committed
1447
 */
1448
@property (nonatomic, copy) NSString *sysOrgCode;
1449
/**
1450
 * 方法: 取得java.lang.String
1451 1452 1453
 *
 *
 */
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
@property (nonatomic, copy) NSString *orderNumber;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *orderTime;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *guideId;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *orderState;
1473
/**
勾芒's avatar
勾芒 committed
1474
 * 方法: 取得java.lang.String
1475 1476 1477
 *
 *
 */
勾芒's avatar
勾芒 committed
1478
@property (nonatomic, copy) NSString *consumerId;
1479 1480 1481 1482 1483
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1484 1485 1486 1487 1488 1489 1490
@property (nonatomic, copy) NSString *goodsNum;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *orderPrice;
1491 1492 1493 1494 1495
/**
 * 方法: 取得java.lang.String
 *
 *
 */
1496
@property (nonatomic, copy) NSString *receiverName;
1497
/**
1498 1499 1500
 * 方法: 取得java.lang.String
 *
 *
1501
 */
1502
@property (nonatomic, copy) NSString *receiverMobile;
1503
/**
1504
 * 方法: 取得java.lang.String
1505 1506 1507
 *
 *
 */
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
@property (nonatomic, copy) NSString *receiverAddress;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *isBill;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *billType;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *billTitle;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *payType;
@end /* interface TOOrderEntity */
勾芒's avatar
勾芒 committed
1534 1535 1536 1537

#endif


1538 1539
#ifndef DEF_TOGoodsLabelCategoryEntity_H
#define DEF_TOGoodsLabelCategoryEntity_H
勾芒's avatar
勾芒 committed
1540

1541
/**
勾芒's avatar
勾芒 committed
1542
 *  @Title: Entity
1543
 @Description: 商品标签分类
勾芒's avatar
勾芒 committed
1544
 @author onlineGenerator
1545
 @date 2016-05-05 16:57:27
勾芒's avatar
勾芒 committed
1546 1547 1548
 @version V1.0
 
 
1549
 */
1550
@interface TOGoodsLabelCategoryEntity : JSONModel
1551 1552 1553 1554 1555
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
1556
@property (nonatomic, copy) NSString *fid;
1557
/**
曹云霄's avatar
曹云霄 committed
1558
 * 方法: 取得java.lang.String
1559 1560
 *
 *
曹云霄's avatar
曹云霄 committed
1561
 */
1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574
@property (nonatomic, copy) NSString *sysOrgCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *code;
1575
/**
勾芒's avatar
勾芒 committed
1576
 * 方法: 取得java.lang.String
1577 1578
 *
 *
曹云霄's avatar
曹云霄 committed
1579
 */
勾芒's avatar
勾芒 committed
1580
@property (nonatomic, copy) NSString *name;
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
@end /* interface TOGoodsLabelCategoryEntity */

#endif


#ifndef DEF_TOGoodsCategoryEntity_H
#define DEF_TOGoodsCategoryEntity_H

/**
 *  @Title: Entity
 @Description: 商品分类
 @author onlineGenerator
 @date 2016-05-10 10:17:53
 @version V1.0
 
 
 */
@interface TOGoodsCategoryEntity : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *upperName;
1605
/**
曹云霄's avatar
曹云霄 committed
1606
 * 方法: 取得java.lang.String
1607 1608
 *
 *
曹云霄's avatar
曹云霄 committed
1609
 */
1610
@property (nonatomic, copy) NSString *fid;
1611
/**
勾芒's avatar
勾芒 committed
1612
 * 方法: 取得java.lang.String
1613 1614
 *
 *
曹云霄's avatar
曹云霄 committed
1615
 */
1616
@property (nonatomic, copy) NSString *code;
1617
/**
曹云霄's avatar
曹云霄 committed
1618
 * 方法: 取得java.lang.String
1619 1620
 *
 *
曹云霄's avatar
曹云霄 committed
1621
 */
1622
@property (nonatomic, copy) NSString *name;
1623
/**
曹云霄's avatar
曹云霄 committed
1624
 * 方法: 取得java.lang.String
1625 1626
 *
 *
曹云霄's avatar
曹云霄 committed
1627
 */
1628 1629 1630 1631 1632 1633 1634 1635
@property (nonatomic, copy) NSString *upperId;
/**
 * 方法: 取得java.lang.Integer
 *
 *
 */
@property (nonatomic, assign) int level;
@end /* interface TOGoodsCategoryEntity */
勾芒's avatar
勾芒 committed
1636 1637 1638 1639

#endif


1640 1641
#ifndef DEF_VOResellerGoodsEntity_H
#define DEF_VOResellerGoodsEntity_H
勾芒's avatar
勾芒 committed
1642 1643

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

#endif


#ifndef DEF_TOConsumerEntity_H
#define DEF_TOConsumerEntity_H

1869
/**
勾芒's avatar
勾芒 committed
1870 1871 1872 1873 1874 1875 1876
 *  @Title: Entity
 @Description: 客户
 @author onlineGenerator
 @date 2016-05-08 18:08:58
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
1877
 */
勾芒's avatar
勾芒 committed
1878
@interface TOConsumerEntity : JSONModel
1879
/**
勾芒's avatar
勾芒 committed
1880
 * 方法: 取得java.lang.String
1881 1882
 *
 *
曹云霄's avatar
曹云霄 committed
1883
 */
勾芒's avatar
勾芒 committed
1884
@property (nonatomic, copy) NSString *fid;
1885
/**
曹云霄's avatar
曹云霄 committed
1886
 * 方法: 取得java.lang.String
1887 1888
 *
 *
曹云霄's avatar
曹云霄 committed
1889
 */
勾芒's avatar
勾芒 committed
1890
@property (nonatomic, copy) NSString *createName;
1891
/**
曹云霄's avatar
曹云霄 committed
1892
 * 方法: 取得java.lang.String
1893 1894
 *
 *
曹云霄's avatar
曹云霄 committed
1895
 */
勾芒's avatar
勾芒 committed
1896
@property (nonatomic, copy) NSString *createBy;
1897
/**
勾芒's avatar
勾芒 committed
1898
 * 方法: 取得java.util.Date
1899 1900
 *
 *
曹云霄's avatar
曹云霄 committed
1901
 */
勾芒's avatar
勾芒 committed
1902
@property (nonatomic, copy) NSString *createDate;
1903
/**
曹云霄's avatar
曹云霄 committed
1904
 * 方法: 取得java.lang.String
1905 1906
 *
 *
曹云霄's avatar
曹云霄 committed
1907
 */
勾芒's avatar
勾芒 committed
1908
@property (nonatomic, copy) NSString *sysOrgCode;
1909
/**
曹云霄's avatar
曹云霄 committed
1910
 * 方法: 取得java.lang.String
1911 1912
 *
 *
曹云霄's avatar
曹云霄 committed
1913
 */
勾芒's avatar
勾芒 committed
1914
@property (nonatomic, copy) NSString *name;
1915
/**
勾芒's avatar
勾芒 committed
1916
 * 方法: 取得java.lang.String
1917 1918
 *
 *
曹云霄's avatar
曹云霄 committed
1919
 */
勾芒's avatar
勾芒 committed
1920
@property (nonatomic, copy) NSString *mobile;
1921
/**
曹云霄's avatar
曹云霄 committed
1922
 * 方法: 取得java.lang.String
1923 1924
 *
 *
曹云霄's avatar
曹云霄 committed
1925
 */
勾芒's avatar
勾芒 committed
1926
@property (nonatomic, copy) NSString *province;
1927
/**
曹云霄's avatar
曹云霄 committed
1928
 * 方法: 取得java.lang.String
1929 1930
 *
 *
曹云霄's avatar
曹云霄 committed
1931
 */
勾芒's avatar
勾芒 committed
1932
@property (nonatomic, copy) NSString *city;
1933
/**
曹云霄's avatar
曹云霄 committed
1934
 * 方法: 取得java.lang.String
1935 1936
 *
 *
曹云霄's avatar
曹云霄 committed
1937
 */
勾芒's avatar
勾芒 committed
1938
@property (nonatomic, copy) NSString *country;
1939
/**
曹云霄's avatar
曹云霄 committed
1940
 * 方法: 取得java.lang.String
1941 1942
 *
 *
曹云霄's avatar
曹云霄 committed
1943
 */
勾芒's avatar
勾芒 committed
1944
@property (nonatomic, copy) NSString *address;
1945
/**
曹云霄's avatar
曹云霄 committed
1946
 * 方法: 取得java.lang.String
1947 1948
 *
 *
曹云霄's avatar
曹云霄 committed
1949
 */
勾芒's avatar
勾芒 committed
1950
@property (nonatomic, copy) NSString *picture;
1951
/**
勾芒's avatar
勾芒 committed
1952
 * 方法: 取得java.util.Date
1953 1954
 *
 *
曹云霄's avatar
曹云霄 committed
1955
 */
勾芒's avatar
勾芒 committed
1956
@property (nonatomic, copy) NSString *lastVisitedTime;
勾芒's avatar
勾芒 committed
1957
@end /* interface TOConsumerEntity */
勾芒's avatar
勾芒 committed
1958 1959 1960 1961

#endif


勾芒's avatar
勾芒 committed
1962 1963
#ifndef DEF_DeleteCartRequest_H
#define DEF_DeleteCartRequest_H
勾芒's avatar
勾芒 committed
1964

1965
/**
勾芒's avatar
勾芒 committed
1966 1967 1968 1969
 *  @author Debenson
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
1970
@interface DeleteCartRequest : JSONModel
1971
/**
勾芒's avatar
勾芒 committed
1972 1973
 * 购物车标识列表
 * @see NSString
1974
 *
曹云霄's avatar
曹云霄 committed
1975
 */
勾芒's avatar
勾芒 committed
1976 1977
@property (nonatomic, strong) NSArray *cartIds;
@end /* interface DeleteCartRequest */
勾芒's avatar
勾芒 committed
1978 1979 1980 1981

#endif


勾芒's avatar
勾芒 committed
1982 1983
#ifndef DEF_SceneCondition_H
#define DEF_SceneCondition_H
勾芒's avatar
勾芒 committed
1984

1985
/**
勾芒's avatar
勾芒 committed
1986
 *  @author Administrator
勾芒's avatar
勾芒 committed
1987 1988 1989
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002
@interface SceneCondition : JSONModel
/**
 * 查询条件:风格
 *
 *
 */
@property (nonatomic, copy) NSString *styleEquals;
/**
 * 查询条件:空间
 *
 *
 */
@property (nonatomic, copy) NSString *spaceEquals;
勾芒's avatar
勾芒 committed
2003
/**
勾芒's avatar
勾芒 committed
2004
 * (no documentation provided)
勾芒's avatar
勾芒 committed
2005
 *
2006 2007
 *
 */
勾芒's avatar
勾芒 committed
2008 2009
@property (nonatomic, strong) DataPage *page;
@end /* interface SceneCondition */
曹云霄's avatar
曹云霄 committed
2010 2011 2012

#endif

2013 2014 2015

#ifndef DEF_HotTagResponse_H
#define DEF_HotTagResponse_H
曹云霄's avatar
曹云霄 committed
2016 2017

/**
2018
 *  @author Administrator
曹云霄's avatar
曹云霄 committed
2019
 @since 0.1
2020
 
曹云霄's avatar
曹云霄 committed
2021
 */
2022 2023 2024 2025 2026
@interface HotTagResponse : JSONModel
/**
 * (no documentation provided)
 * @see TOHottagEntity
 *
曹云霄's avatar
曹云霄 committed
2027
 */
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040
@property (nonatomic, strong) NSArray<TOHottagEntity> *list;
@end /* interface HotTagResponse */

#endif


#ifndef DEF_GoodsCategory_H
#define DEF_GoodsCategory_H

/**
 *  @author Debenson
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
2041
 */
2042 2043 2044 2045 2046
@interface GoodsCategory : JSONModel
/**
 * 分类id
 *
 *
曹云霄's avatar
曹云霄 committed
2047
 */
2048 2049 2050 2051 2052
@property (nonatomic, copy) NSString *fid;
/**
 * 分类名称
 *
 *
曹云霄's avatar
曹云霄 committed
2053
 */
2054 2055 2056 2057 2058
@property (nonatomic, copy) NSString *name;
/**
 * 下级分类列表
 * @see GoodsCategory
 *
曹云霄's avatar
曹云霄 committed
2059
 */
2060 2061
@property (nonatomic, strong) NSArray<GoodsCategory> *children;
@end /* interface GoodsCategory */
曹云霄's avatar
曹云霄 committed
2062 2063 2064

#endif

2065

曹云霄's avatar
曹云霄 committed
2066 2067 2068 2069 2070 2071 2072 2073
#ifndef DEF_ResetPasswordRequest_H
#define DEF_ResetPasswordRequest_H

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

#endif

2100

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

/**
 *  登录结果。
 
 @author Debenson
 @since 0.1
2109
 
曹云霄's avatar
曹云霄 committed
2110 2111
 */
@interface LoginResult : JSONModel
2112
/**
曹云霄's avatar
曹云霄 committed
2113
 * 员工
2114 2115
 *
 *
曹云霄's avatar
曹云霄 committed
2116 2117
 */
@property (nonatomic, strong) TOEmployee *employee;
2118
/**
曹云霄's avatar
曹云霄 committed
2119
 * 分成比例
2120 2121
 *
 *
曹云霄's avatar
曹云霄 committed
2122
 */
2123
@property (nonatomic, strong) NSNumber *commission;
曹云霄's avatar
曹云霄 committed
2124 2125 2126 2127
@end /* interface LoginResult */

#endif

2128

曹云霄's avatar
曹云霄 committed
2129 2130 2131 2132
#ifndef DEF_ConsumerQueryCondition_H
#define DEF_ConsumerQueryCondition_H

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

#endif

2180

曹云霄's avatar
曹云霄 committed
2181 2182 2183 2184 2185 2186 2187 2188
#ifndef DEF_ExceptionCode_H
#define DEF_ExceptionCode_H

/**
 *  异常代码。
 
 @author Debenson
 @since 0.1
2189
 
曹云霄's avatar
曹云霄 committed
2190 2191
 */
@interface ExceptionCode : JSONModel
2192
/**
曹云霄's avatar
曹云霄 committed
2193
 * 异常代码
2194 2195
 *
 *
曹云霄's avatar
曹云霄 committed
2196 2197
 */
@property (nonatomic, assign) int code;
2198
/**
曹云霄's avatar
曹云霄 committed
2199
 * 异常信息
2200 2201
 *
 *
曹云霄's avatar
曹云霄 committed
2202 2203 2204 2205 2206 2207
 */
@property (nonatomic, copy) NSString *message;
@end /* interface ExceptionCode */

#endif

2208

曹云霄's avatar
曹云霄 committed
2209 2210 2211 2212 2213 2214 2215 2216
#ifndef DEF_DataPage_H
#define DEF_DataPage_H

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

#endif


#ifndef DEF_TSBaseUser_H
#define DEF_TSBaseUser_H

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

#endif

2334

曹云霄's avatar
曹云霄 committed
2335 2336 2337 2338 2339 2340
#ifndef DEF_TSDepart_H
#define DEF_TSDepart_H

/**
 *  部门机构表
 @author  张代浩
2341
 
曹云霄's avatar
曹云霄 committed
2342 2343
 */
@interface TSDepart : IdEntity
2344
/**
曹云霄's avatar
曹云霄 committed
2345
 * (no documentation provided)
2346 2347
 *
 *
曹云霄's avatar
曹云霄 committed
2348 2349
 */
@property (nonatomic, strong) TSDepart *TSPDepart;
2350
/**
曹云霄's avatar
曹云霄 committed
2351
 * (no documentation provided)
2352 2353
 *
 *
曹云霄's avatar
曹云霄 committed
2354 2355
 */
@property (nonatomic, copy) NSString *departname;
2356
/**
曹云霄's avatar
曹云霄 committed
2357
 * (no documentation provided)
2358 2359
 *
 *
曹云霄's avatar
曹云霄 committed
2360 2361
 */
@property (nonatomic, copy) NSString *fdescription;
2362
/**
曹云霄's avatar
曹云霄 committed
2363 2364
 * (no documentation provided)
 * @see TSDepart
2365
 *
曹云霄's avatar
曹云霄 committed
2366 2367
 */
@property (nonatomic, strong) NSArray<TSDepart> *TSDeparts;
2368
/**
曹云霄's avatar
曹云霄 committed
2369
 * (no documentation provided)
2370 2371
 *
 *
曹云霄's avatar
曹云霄 committed
2372 2373
 */
@property (nonatomic, copy) NSString *orgCode;
2374
/**
曹云霄's avatar
曹云霄 committed
2375
 * (no documentation provided)
2376 2377
 *
 *
曹云霄's avatar
曹云霄 committed
2378 2379
 */
@property (nonatomic, copy) NSString *orgType;
2380
/**
曹云霄's avatar
曹云霄 committed
2381
 * (no documentation provided)
2382 2383
 *
 *
曹云霄's avatar
曹云霄 committed
2384 2385
 */
@property (nonatomic, copy) NSString *mobile;
2386
/**
曹云霄's avatar
曹云霄 committed
2387
 * (no documentation provided)
2388 2389
 *
 *
曹云霄's avatar
曹云霄 committed
2390 2391
 */
@property (nonatomic, copy) NSString *fax;
2392
/**
曹云霄's avatar
曹云霄 committed
2393
 * (no documentation provided)
2394 2395
 *
 *
曹云霄's avatar
曹云霄 committed
2396 2397 2398 2399 2400 2401
 */
@property (nonatomic, copy) NSString *address;
@end /* interface TSDepart */

#endif

2402

勾芒's avatar
勾芒 committed
2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424
#ifndef DEF_ShopCartResponse_H
#define DEF_ShopCartResponse_H

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

#endif


2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454
#ifndef DEF_TSUserOrg_H
#define DEF_TSUserOrg_H

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

#endif


勾芒's avatar
勾芒 committed
2455 2456
#ifndef DEF_SceneResponse_H
#define DEF_SceneResponse_H
2457 2458

/**
勾芒's avatar
勾芒 committed
2459
 *  @author Administrator
2460 2461 2462
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
2463
@interface SceneResponse : PageRows
2464 2465
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
2466
 * @see TOSceneEntity
2467 2468
 *
 */
勾芒's avatar
勾芒 committed
2469 2470
@property (nonatomic, strong) NSArray<TOSceneEntity> *list;
@end /* interface SceneResponse */
2471 2472 2473 2474

#endif


曹云霄's avatar
曹云霄 committed
2475 2476 2477 2478 2479 2480 2481 2482
#ifndef DEF_OrderResponse_H
#define DEF_OrderResponse_H

/**
 *  订单返回对象
 
 @author wsx
 @since 0.1
2483
 
曹云霄's avatar
曹云霄 committed
2484 2485
 */
@interface OrderResponse : PageRows
2486
/**
曹云霄's avatar
曹云霄 committed
2487 2488
 * (no documentation provided)
 * @see OrderBill
2489
 *
曹云霄's avatar
曹云霄 committed
2490 2491 2492 2493 2494 2495
 */
@property (nonatomic, strong) NSArray<OrderBill> *orderBillList;
@end /* interface OrderResponse */

#endif

2496

曹云霄's avatar
曹云霄 committed
2497 2498 2499 2500 2501 2502 2503
#ifndef DEF_GoodsResponse_H
#define DEF_GoodsResponse_H

/**
 *  @author NuoSa
 
 @since 0.1
2504
 
曹云霄's avatar
曹云霄 committed
2505 2506
 */
@interface GoodsResponse : PageRows
2507
/**
曹云霄's avatar
曹云霄 committed
2508 2509
 * 商品列表
 * @see TOGoodsEntity
2510
 *
曹云霄's avatar
曹云霄 committed
2511 2512 2513 2514 2515 2516
 */
@property (nonatomic, strong) NSArray<TOGoodsEntity> *goodsEntity;
@end /* interface GoodsResponse */

#endif

2517

曹云霄's avatar
曹云霄 committed
2518 2519 2520 2521 2522 2523 2524 2525
#ifndef DEF_ConsumerPageResult_H
#define DEF_ConsumerPageResult_H

/**
 *  客户分页查询结果。
 
 @author Debenson
 @since 0.1
2526
 
曹云霄's avatar
曹云霄 committed
2527 2528
 */
@interface ConsumerPageResult : PageRows
2529
/**
曹云霄's avatar
曹云霄 committed
2530 2531
 * 客户列表
 * @see TOConsumerEntity
2532
 *
曹云霄's avatar
曹云霄 committed
2533 2534 2535 2536 2537 2538
 */
@property (nonatomic, strong) NSArray<TOConsumerEntity> *results;
@end /* interface ConsumerPageResult */

#endif

2539

曹云霄's avatar
曹云霄 committed
2540 2541 2542 2543 2544
#ifndef DEF_TSUser_H
#define DEF_TSUser_H

/**
 *  系统用户表
勾芒's avatar
勾芒 committed
2545 2546
 
 @author 张代浩
2547
 
曹云霄's avatar
曹云霄 committed
2548 2549
 */
@interface TSUser : TSBaseUser
2550
/**
曹云霄's avatar
曹云霄 committed
2551
 * (no documentation provided)
2552 2553
 *
 *
曹云霄's avatar
曹云霄 committed
2554 2555
 */
@property (nonatomic, copy) NSString *signatureFile;
2556
/**
曹云霄's avatar
曹云霄 committed
2557
 * (no documentation provided)
2558 2559
 *
 *
曹云霄's avatar
曹云霄 committed
2560 2561
 */
@property (nonatomic, copy) NSString *mobilePhone;
2562
/**
曹云霄's avatar
曹云霄 committed
2563
 * (no documentation provided)
2564 2565
 *
 *
曹云霄's avatar
曹云霄 committed
2566 2567
 */
@property (nonatomic, copy) NSString *officePhone;
2568
/**
曹云霄's avatar
曹云霄 committed
2569
 * (no documentation provided)
2570 2571
 *
 *
曹云霄's avatar
曹云霄 committed
2572 2573
 */
@property (nonatomic, copy) NSString *email;
2574
/**
曹云霄's avatar
曹云霄 committed
2575
 * 方法: 取得java.util.Date
2576 2577
 *
 *
曹云霄's avatar
曹云霄 committed
2578
 */
勾芒's avatar
勾芒 committed
2579
@property (nonatomic, copy) NSString *createDate;
2580
/**
曹云霄's avatar
曹云霄 committed
2581
 * 方法: 取得java.lang.String
2582 2583
 *
 *
曹云霄's avatar
曹云霄 committed
2584 2585
 */
@property (nonatomic, copy) NSString *createBy;
2586
/**
曹云霄's avatar
曹云霄 committed
2587
 * 方法: 取得java.lang.String
2588 2589
 *
 *
曹云霄's avatar
曹云霄 committed
2590 2591
 */
@property (nonatomic, copy) NSString *createName;
2592
/**
曹云霄's avatar
曹云霄 committed
2593
 * 方法: 取得java.util.Date
2594 2595
 *
 *
曹云霄's avatar
曹云霄 committed
2596
 */
勾芒's avatar
勾芒 committed
2597
@property (nonatomic, copy) NSString *updateDate;
2598
/**
曹云霄's avatar
曹云霄 committed
2599
 * 方法: 取得java.lang.String
2600 2601
 *
 *
曹云霄's avatar
曹云霄 committed
2602 2603
 */
@property (nonatomic, copy) NSString *updateBy;
2604
/**
曹云霄's avatar
曹云霄 committed
2605
 * 方法: 取得java.lang.String
2606 2607
 *
 *
曹云霄's avatar
曹云霄 committed
2608 2609
 */
@property (nonatomic, copy) NSString *updateName;
勾芒's avatar
勾芒 committed
2610 2611 2612 2613 2614 2615
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *position;
曹云霄's avatar
曹云霄 committed
2616 2617 2618 2619
@end /* interface TSUser */

#endif

2620

曹云霄's avatar
曹云霄 committed
2621 2622 2623 2624 2625 2626 2627 2628
#ifndef DEF_TOEmployee_H
#define DEF_TOEmployee_H

/**
 *  经销商员工。
 
 @author Debenson
 @since 0.1
2629
 
曹云霄's avatar
曹云霄 committed
2630 2631
 */
@interface TOEmployee : TSUser
2632
/**
曹云霄's avatar
曹云霄 committed
2633
 * 职位编码列表, (多个职位编码用逗号分隔,非必填)
2634 2635
 *
 *
曹云霄's avatar
曹云霄 committed
2636 2637 2638 2639 2640 2641
 */
@property (nonatomic, copy) NSString *positions;
@end /* interface TOEmployee */

#endif