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

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


曹云霄's avatar
曹云霄 committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
/**
 *  评分方法。
 *
 *  @author thor
 *
 */
/**
 * 自动
 */
extern NSString * const GRADEMETHOD_AUTO;
/**
 * 人工
 */
extern NSString * const GRADEMETHOD_MANUL;




/**
 *  @author wolv
 *
 */
/**
 *
 */
extern NSString * const TOPRIZEBILLENTITYSTATE_REQUESTED;
/**
 *
 */
extern NSString * const TOPRIZEBILLENTITYSTATE_SHIPPED;
/**
 *
 */
extern NSString * const TOPRIZEBILLENTITYSTATE_DONE;




/**
 *  学习任务状态。
 *
 *  @author thor
 *
 */
/**
 *
 */
extern NSString * const STUDYTASKSTATE_INITIAL;
/**
 *
 */
extern NSString * const STUDYTASKSTATE_SUBMITTED;




曹云霄's avatar
曹云霄 committed
62
/**
63
 *  @Description: TODO(排序定义)
曹云霄's avatar
曹云霄 committed
64 65 66 67 68
 *  asc 升序
 *  @author  张代浩
 *  desc 降序
 */
/**
69
 *
曹云霄's avatar
曹云霄 committed
70 71 72
 */
extern NSString * const SORTDIRECTION_ASC;
/**
73
 *
曹云霄's avatar
曹云霄 committed
74 75 76
 */
extern NSString * const SORTDIRECTION_DESC;

77

曹云霄's avatar
曹云霄 committed
78 79


曹云霄's avatar
曹云霄 committed
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
/**
 *  题目类型。
 *
 *  @author thor
 *
 */
/**
 * 单选题
 */
extern NSString * const STUDYTOPICTYPE_SINGLE;
/**
 * 多选题
 */
extern NSString * const STUDYTOPICTYPE_MULTIPLE;
/**
 * 判断题
 */
extern NSString * const STUDYTOPICTYPE_TRUEORFALSE;




/**
 *  题目类型。
 *
 *  @author thor
 *
 */
/**
 * 单选题
 */
extern NSString * const PASSLEVELTOPICTYPE_SINGLE;
/**
 * 多选题
 */
extern NSString * const PASSLEVELTOPICTYPE_MULTIPLE;
/**
 * 判断题
 */
extern NSString * const PASSLEVELTOPICTYPE_TRUEORFALSE;
/**
 * 填空题
 */
extern NSString * const PASSLEVELTOPICTYPE_GAPFILLING;
/**
 * 简答题
 */
extern NSString * const PASSLEVELTOPICTYPE_SHORTANSWER;




@class ApplyRequest;
曹云霄's avatar
曹云霄 committed
133 134 135
@class RsApplyBillRequest;
@class RsCommissionRequest;
@class DataPage;
曹云霄's avatar
曹云霄 committed
136 137
@class PageRows;
@class RsResponse;
曹云霄's avatar
曹云霄 committed
138 139 140 141 142
@class FunctionInfo;
@class LoginResult;
@class ResetPasswordRequest;
@class DataDict;
@class GoodsCondition;
曹云霄's avatar
曹云霄 committed
143
@class GoodsFilter;
曹云霄's avatar
曹云霄 committed
144
@class GroupByOrderNumber;
145
@class RsJingDongECardRequest;
曹云霄's avatar
曹云霄 committed
146
@class RsSimpleJingDongECardRequest;
147 148
@class LotteryDrawResponse;
@class RsLotteryRequest;
曹云霄's avatar
曹云霄 committed
149
@class OrderBill;
勾芒's avatar
勾芒 committed
150
@class OrderPayRequest;
曹云霄's avatar
曹云霄 committed
151 152
@class PromotionGoods;
@class PassLevelCondition;
153
@class PrizeCondition;
曹云霄's avatar
曹云霄 committed
154 155
@class RsPrizeBillResponse;
@class SceneCondition;
156
@class SceneFilter;
157 158
@class RsShippingAddrEntity;
@class SaveShoppingCartRequest;
勾芒's avatar
勾芒 committed
159
@class ShopCartFilter;
曹云霄's avatar
曹云霄 committed
160 161
@class StudyTaskCondition;
@class RsShareResponse;
162
@class TOApplyBillEntity;
曹云霄's avatar
曹云霄 committed
163 164 165 166 167
@class TOCommissionHistEntity;
@class TOGoodsEntity;
@class VOResellerGoodsEntity;
@class TOGoodsCategoryEntity;
@class TOGoodsLabelCategoryEntity;
168
@class TOJingdongEcardEntity;
曹云霄's avatar
曹云霄 committed
169
@class TODrawEntity;
170
@class TOOrderdetailEntity;
曹云霄's avatar
曹云霄 committed
171 172
@class TOPassLevelEntity;
@class TOPassLevelTopicOptionEntity;
曹云霄's avatar
曹云霄 committed
173
@class TOPrizeBillDetailsEntity;
曹云霄's avatar
曹云霄 committed
174
@class TOSceneEntity;
曹云霄's avatar
曹云霄 committed
175
@class TOShippingAddrEntity;
曹云霄's avatar
曹云霄 committed
176 177 178
@class TOStudyEmployeeEntity;
@class TOStudyTopicEntity;
@class TOStudyTypeEntity;
179
@class Action;
曹云霄's avatar
曹云霄 committed
180
@class IdEntity;
曹云霄's avatar
曹云霄 committed
181 182 183
@class UCN;
@class TOStudyTopicOptionEntity;
@class TOStudyTaskEntity;
曹云霄's avatar
曹云霄 committed
184
@class TOShopcartEntity;
曹云霄's avatar
曹云霄 committed
185
@class TOScoreRecordEntity;
曹云霄's avatar
曹云霄 committed
186
@class TOPrizeEntity;
曹云霄's avatar
曹云霄 committed
187 188 189
@class TOPrizeBillEntity;
@class TOPositionEntity;
@class TOPassLevelTopicEntity;
曹云霄's avatar
曹云霄 committed
190
@class TOOrderPromotionEntity;
191
@class TOOrderEntity;
曹云霄's avatar
曹云霄 committed
192
@class TOAwardEntity;
曹云霄's avatar
曹云霄 committed
193 194 195 196 197 198 199 200 201
@class TOGuideBankcardEntity;
@class TOGoodsLabelEntity;
@class TOGoodsBrandEntity;
@class TOGoodsForResellerEntity;
@class TOConsumerEntity;
@class TOAttachmentEntity;
@class TOAfficheEntity;
@class StudyTypeResponse;
@class RsStudyTask;
202
@class DeleteCartRequest;
曹云霄's avatar
曹云霄 committed
203 204
@class RsScoreDetails;
@class RsActionResult;
205
@class RsPrizeBill;
曹云霄's avatar
曹云霄 committed
206 207 208 209 210 211 212
@class OrderFilter;
@class Draw;
@class HotFilter;
@class GoodsCategory;
@class RsEmployeeRequest;
@class ModifyPasswordRequest;
@class LoginInfo;
曹云霄's avatar
曹云霄 committed
213 214
@class ConsumerQueryCondition;
@class ExceptionCode;
曹云霄's avatar
曹云霄 committed
215
@class EarningsResponse;
曹云霄's avatar
曹云霄 committed
216 217
@class AfficheCondition;
@class GoodsResponse;
218
@class TSBaseUser;
219
@class TSDepart;
曹云霄's avatar
曹云霄 committed
220
@class RsJingDongECardResponse;
勾芒's avatar
勾芒 committed
221
@class TSUserOrg;
曹云霄's avatar
曹云霄 committed
222
@class RsAwardDraw;
曹云霄's avatar
曹云霄 committed
223
@class RsLotteryResponse;
曹云霄's avatar
曹云霄 committed
224
@class PassLevelResponse;
225
@class ShopCartResponse;
226
@class SceneResponse;
曹云霄's avatar
曹云霄 committed
227
@class PrizeResponse;
228
@class OrderResponse;
曹云霄's avatar
曹云霄 committed
229
@class RsSimpleJingDongECardResponse;
曹云霄's avatar
曹云霄 committed
230
@class RsCommissionResponse;
曹云霄's avatar
曹云霄 committed
231
@class ConsumerPageResult;
曹云霄's avatar
曹云霄 committed
232
@class RsApplyBillResponse;
曹云霄's avatar
曹云霄 committed
233
@class AfficheResponse;
曹云霄's avatar
曹云霄 committed
234 235
@class TSUser;
@class TOEmployee;
236

曹云霄's avatar
曹云霄 committed
237
@protocol ApplyRequest @end
曹云霄's avatar
曹云霄 committed
238 239 240
@protocol RsApplyBillRequest @end
@protocol RsCommissionRequest @end
@protocol DataPage @end
曹云霄's avatar
曹云霄 committed
241 242
@protocol PageRows @end
@protocol RsResponse @end
曹云霄's avatar
曹云霄 committed
243 244 245 246 247
@protocol FunctionInfo @end
@protocol LoginResult @end
@protocol ResetPasswordRequest @end
@protocol DataDict @end
@protocol GoodsCondition @end
曹云霄's avatar
曹云霄 committed
248
@protocol GoodsFilter @end
曹云霄's avatar
曹云霄 committed
249
@protocol GroupByOrderNumber @end
250
@protocol RsJingDongECardRequest @end
曹云霄's avatar
曹云霄 committed
251
@protocol RsSimpleJingDongECardRequest @end
252 253
@protocol LotteryDrawResponse @end
@protocol RsLotteryRequest @end
曹云霄's avatar
曹云霄 committed
254
@protocol OrderBill @end
勾芒's avatar
勾芒 committed
255
@protocol OrderPayRequest @end
曹云霄's avatar
曹云霄 committed
256 257
@protocol PromotionGoods @end
@protocol PassLevelCondition @end
258
@protocol PrizeCondition @end
曹云霄's avatar
曹云霄 committed
259 260
@protocol RsPrizeBillResponse @end
@protocol SceneCondition @end
261
@protocol SceneFilter @end
262 263
@protocol RsShippingAddrEntity @end
@protocol SaveShoppingCartRequest @end
勾芒's avatar
勾芒 committed
264
@protocol ShopCartFilter @end
曹云霄's avatar
曹云霄 committed
265 266
@protocol StudyTaskCondition @end
@protocol RsShareResponse @end
267
@protocol TOApplyBillEntity @end
曹云霄's avatar
曹云霄 committed
268 269 270 271 272
@protocol TOCommissionHistEntity @end
@protocol TOGoodsEntity @end
@protocol VOResellerGoodsEntity @end
@protocol TOGoodsCategoryEntity @end
@protocol TOGoodsLabelCategoryEntity @end
273
@protocol TOJingdongEcardEntity @end
曹云霄's avatar
曹云霄 committed
274
@protocol TODrawEntity @end
275
@protocol TOOrderdetailEntity @end
曹云霄's avatar
曹云霄 committed
276 277
@protocol TOPassLevelEntity @end
@protocol TOPassLevelTopicOptionEntity @end
曹云霄's avatar
曹云霄 committed
278
@protocol TOPrizeBillDetailsEntity @end
曹云霄's avatar
曹云霄 committed
279
@protocol TOSceneEntity @end
曹云霄's avatar
曹云霄 committed
280
@protocol TOShippingAddrEntity @end
曹云霄's avatar
曹云霄 committed
281 282 283
@protocol TOStudyEmployeeEntity @end
@protocol TOStudyTopicEntity @end
@protocol TOStudyTypeEntity @end
284
@protocol Action @end
曹云霄's avatar
曹云霄 committed
285
@protocol IdEntity @end
曹云霄's avatar
曹云霄 committed
286 287 288
@protocol UCN @end
@protocol TOStudyTopicOptionEntity @end
@protocol TOStudyTaskEntity @end
曹云霄's avatar
曹云霄 committed
289
@protocol TOShopcartEntity @end
曹云霄's avatar
曹云霄 committed
290
@protocol TOScoreRecordEntity @end
曹云霄's avatar
曹云霄 committed
291
@protocol TOPrizeEntity @end
曹云霄's avatar
曹云霄 committed
292 293 294
@protocol TOPrizeBillEntity @end
@protocol TOPositionEntity @end
@protocol TOPassLevelTopicEntity @end
曹云霄's avatar
曹云霄 committed
295
@protocol TOOrderPromotionEntity @end
296
@protocol TOOrderEntity @end
曹云霄's avatar
曹云霄 committed
297
@protocol TOAwardEntity @end
曹云霄's avatar
曹云霄 committed
298 299 300 301 302 303 304 305 306
@protocol TOGuideBankcardEntity @end
@protocol TOGoodsLabelEntity @end
@protocol TOGoodsBrandEntity @end
@protocol TOGoodsForResellerEntity @end
@protocol TOConsumerEntity @end
@protocol TOAttachmentEntity @end
@protocol TOAfficheEntity @end
@protocol StudyTypeResponse @end
@protocol RsStudyTask @end
307
@protocol DeleteCartRequest @end
曹云霄's avatar
曹云霄 committed
308 309
@protocol RsScoreDetails @end
@protocol RsActionResult @end
310
@protocol RsPrizeBill @end
曹云霄's avatar
曹云霄 committed
311 312 313 314 315 316 317
@protocol OrderFilter @end
@protocol Draw @end
@protocol HotFilter @end
@protocol GoodsCategory @end
@protocol RsEmployeeRequest @end
@protocol ModifyPasswordRequest @end
@protocol LoginInfo @end
曹云霄's avatar
曹云霄 committed
318 319
@protocol ConsumerQueryCondition @end
@protocol ExceptionCode @end
曹云霄's avatar
曹云霄 committed
320
@protocol EarningsResponse @end
曹云霄's avatar
曹云霄 committed
321 322
@protocol AfficheCondition @end
@protocol GoodsResponse @end
323
@protocol TSBaseUser @end
324
@protocol TSDepart @end
曹云霄's avatar
曹云霄 committed
325
@protocol RsJingDongECardResponse @end
勾芒's avatar
勾芒 committed
326
@protocol TSUserOrg @end
曹云霄's avatar
曹云霄 committed
327
@protocol RsAwardDraw @end
曹云霄's avatar
曹云霄 committed
328
@protocol RsLotteryResponse @end
曹云霄's avatar
曹云霄 committed
329
@protocol PassLevelResponse @end
330
@protocol ShopCartResponse @end
331
@protocol SceneResponse @end
曹云霄's avatar
曹云霄 committed
332
@protocol PrizeResponse @end
333
@protocol OrderResponse @end
曹云霄's avatar
曹云霄 committed
334
@protocol RsSimpleJingDongECardResponse @end
曹云霄's avatar
曹云霄 committed
335
@protocol RsCommissionResponse @end
曹云霄's avatar
曹云霄 committed
336
@protocol ConsumerPageResult @end
曹云霄's avatar
曹云霄 committed
337
@protocol RsApplyBillResponse @end
曹云霄's avatar
曹云霄 committed
338
@protocol AfficheResponse @end
曹云霄's avatar
曹云霄 committed
339 340
@protocol TSUser @end
@protocol TOEmployee @end
341 342


曹云霄's avatar
曹云霄 committed
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
/**
 *  @author Administrator
 @since 0.1
 
 */
@interface ApplyRequest : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) NSNumber *amount;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *billType;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *bankCardNumber;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *bankName;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *bankCode;
@end /* interface ApplyRequest */



曹云霄's avatar
曹云霄 committed
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
/**
 * (no documentation provided)
 */
@interface RsApplyBillRequest : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *employeeId;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface RsApplyBillRequest */



/**
曹云霄's avatar
曹云霄 committed
404 405 406
 *  流水请求
 
 @author nevermore
曹云霄's avatar
曹云霄 committed
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
 @since 0.1
 
 */
@interface RsCommissionRequest : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *emploreeId;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface RsCommissionRequest */



/**
 *  easyui的datagrid向后台传递参数使用的model
 
 @author
 
 
 */
@interface DataPage : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, assign) NSInteger total;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, assign) NSInteger page;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, assign) NSInteger rows;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *sort;
/**
 * (no documentation provided)
 *
 * 取值: SORTDIRECTION_ASC, SORTDIRECTION_DESC,
 */
@property (nonatomic, copy) NSString *order;
@end /* interface DataPage */



曹云霄's avatar
曹云霄 committed
469 470 471 472 473
/**
 *  分页类
 
 @author Administrator
 @since 0.1
474
 
曹云霄's avatar
曹云霄 committed
475 476
 */
@interface PageRows : JSONModel
477
/**
曹云霄's avatar
曹云霄 committed
478
 * (no documentation provided)
479 480
 *
 *
曹云霄's avatar
曹云霄 committed
481
 */
482
@property (nonatomic, assign) NSInteger page;
483
/**
曹云霄's avatar
曹云霄 committed
484
 * (no documentation provided)
485 486
 *
 *
曹云霄's avatar
曹云霄 committed
487
 */
488
@property (nonatomic, assign) NSInteger rows;
489
/**
曹云霄's avatar
曹云霄 committed
490
 * (no documentation provided)
491 492
 *
 *
曹云霄's avatar
曹云霄 committed
493
 */
494
@property (nonatomic, assign) NSInteger total;
495 496 497 498 499
/**
 * (no documentation provided)
 *
 *
 */
500
@property (nonatomic, assign) NSInteger totalpages;
曹云霄's avatar
曹云霄 committed
501 502 503
@end /* interface PageRows */


504

曹云霄's avatar
曹云霄 committed
505 506 507 508 509
/**
 *  Restful Service response base
 
 @author Debenson
 @since 0.1
510
 
曹云霄's avatar
曹云霄 committed
511 512
 */
@interface RsResponse : JSONModel
513
/**
曹云霄's avatar
曹云霄 committed
514
 * 0:正常, 非0异常。
515 516
 *
 *
曹云霄's avatar
曹云霄 committed
517 518
 */
@property (nonatomic, assign) long long code;
519
/**
曹云霄's avatar
曹云霄 committed
520
 * 异常描述
521 522
 *
 *
曹云霄's avatar
曹云霄 committed
523 524
 */
@property (nonatomic, copy) NSString *message;
525
/**
曹云霄's avatar
曹云霄 committed
526
 * 返回数据
527 528
 *
 *
曹云霄's avatar
曹云霄 committed
529 530 531 532
 */
@property (nonatomic, strong) NSObject *data;
@end /* interface RsResponse */

533

曹云霄's avatar
曹云霄 committed
534 535

/**
曹云霄's avatar
曹云霄 committed
536
 *  用户权限信息
曹云霄's avatar
曹云霄 committed
537
 
曹云霄's avatar
曹云霄 committed
538 539 540
 @author thor
 @date 2016年11月17日 下午2:29:40
 @version 0.1
541
 
曹云霄's avatar
曹云霄 committed
542
 */
曹云霄's avatar
曹云霄 committed
543
@interface FunctionInfo : JSONModel
544
/**
曹云霄's avatar
曹云霄 committed
545
 * (no documentation provided)
546 547
 *
 *
曹云霄's avatar
曹云霄 committed
548
 */
曹云霄's avatar
曹云霄 committed
549
@property (nonatomic, copy) NSString *userName;
550
/**
曹云霄's avatar
曹云霄 committed
551
 * (no documentation provided)
552 553
 *
 *
曹云霄's avatar
曹云霄 committed
554
 */
曹云霄's avatar
曹云霄 committed
555 556
@property (nonatomic, copy) NSString *functionName;
@end /* interface FunctionInfo */
曹云霄's avatar
曹云霄 committed
557 558


559

曹云霄's avatar
曹云霄 committed
560
/**
曹云霄's avatar
曹云霄 committed
561
 *  登录结果。
曹云霄's avatar
曹云霄 committed
562 563 564
 
 @author Debenson
 @since 0.1
565
 
曹云霄's avatar
曹云霄 committed
566
 */
曹云霄's avatar
曹云霄 committed
567
@interface LoginResult : JSONModel
568
/**
曹云霄's avatar
曹云霄 committed
569
 * 员工
570 571
 *
 *
曹云霄's avatar
曹云霄 committed
572
 */
曹云霄's avatar
曹云霄 committed
573
@property (nonatomic, strong) TOEmployee *employee;
574
/**
曹云霄's avatar
曹云霄 committed
575
 * 分成比例
576 577
 *
 *
曹云霄's avatar
曹云霄 committed
578
 */
曹云霄's avatar
曹云霄 committed
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
@property (nonatomic, strong) NSNumber *commissionRate;
/**
 * 提成金额
 *
 *
 */
@property (nonatomic, strong) NSNumber *commissionTotal;
/**
 * 最低分成比例
 *
 *
 */
@property (nonatomic, strong) NSNumber *lowestDiscount;
@end /* interface LoginResult */



/**
 *  重置密码请求。
 
 @author Debenson
 @since 0.1
 
 */
@interface ResetPasswordRequest : JSONModel
/**
 * 用户名
 *
 *
 */
@property (nonatomic, copy) NSString *username;
/**
 * 短信验证码,请先调用发送短信接口
 * com.gomore.opple.rest.system.RsSystemService#sendSms(String)
 *
 *
 */
@property (nonatomic, copy) NSString *smsCode;
617
/**
曹云霄's avatar
曹云霄 committed
618
 * 新密码
619 620
 *
 *
曹云霄's avatar
曹云霄 committed
621 622
 */
@property (nonatomic, copy) NSString *fnewPassword;
曹云霄's avatar
曹云霄 committed
623
@end /* interface ResetPasswordRequest */
曹云霄's avatar
曹云霄 committed
624

625

曹云霄's avatar
曹云霄 committed
626 627

/**
曹云霄's avatar
曹云霄 committed
628
 *  @author Administrator
曹云霄's avatar
曹云霄 committed
629
 @since 0.1
630 631
 
 */
曹云霄's avatar
曹云霄 committed
632
@interface DataDict : JSONModel
633 634 635 636 637
/**
 * (no documentation provided)
 *
 *
 */
曹云霄's avatar
曹云霄 committed
638 639 640 641 642 643 644 645
@property (nonatomic, copy) NSString *typeName;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *typecode;
@end /* interface DataDict */
646

曹云霄's avatar
曹云霄 committed
647

648 649

/**
曹云霄's avatar
曹云霄 committed
650 651
 *  @author NuoSa
 
652 653
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
654
 */
曹云霄's avatar
曹云霄 committed
655
@interface GoodsCondition : JSONModel
656
/**
曹云霄's avatar
曹云霄 committed
657
 * 查询条件是 商品名称
658 659 660
 *
 *
 */
曹云霄's avatar
曹云霄 committed
661
@property (nonatomic, copy) NSString *nameLike;
662
/**
曹云霄's avatar
曹云霄 committed
663
 * 查询条件是 类型id,取值: GoodsCategory#getId()
664 665 666
 *
 *
 */
曹云霄's avatar
曹云霄 committed
667
@property (nonatomic, copy) NSString *categoryEquals;
668
/**
曹云霄's avatar
曹云霄 committed
669 670
 * 查询条件是 风格
 *
671 672
 *
 */
曹云霄's avatar
曹云霄 committed
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
@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;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface GoodsCondition */
曹云霄's avatar
曹云霄 committed
705

706

曹云霄's avatar
曹云霄 committed
707 708 709 710

/**
 *  @author Debenson
 @since 0.1
711
 
曹云霄's avatar
曹云霄 committed
712 713
 */
@interface GoodsFilter : JSONModel
714
/**
曹云霄's avatar
曹云霄 committed
715
 * 风格
716 717
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
718
 */
719 720 721
@property (nonatomic, strong) NSArray<DataDict> *styles;
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
722
 * @see GoodsCategory
723
 *
曹云霄's avatar
曹云霄 committed
724 725
 */
@property (nonatomic, strong) NSArray<GoodsCategory> *categories;
726
/**
曹云霄's avatar
曹云霄 committed
727
 * 空间
728 729
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
730
 */
731 732
@property (nonatomic, strong) NSArray<DataDict> *space;
/**
曹云霄's avatar
曹云霄 committed
733
 * 材质
734 735
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
736
 */
737 738
@property (nonatomic, strong) NSArray<DataDict> *material;
/**
曹云霄's avatar
曹云霄 committed
739
 * 价格
740 741
 * @see DataDict
 *
曹云霄's avatar
曹云霄 committed
742
 */
743
@property (nonatomic, strong) NSArray<DataDict> *price;
曹云霄's avatar
曹云霄 committed
744 745 746 747 748
@end /* interface GoodsFilter */



/**
曹云霄's avatar
曹云霄 committed
749 750 751
 *  查询京东E卡对象
 
 @author nevermore
曹云霄's avatar
曹云霄 committed
752
 @since 0.1
753
 
曹云霄's avatar
曹云霄 committed
754
 */
曹云霄's avatar
曹云霄 committed
755
@interface GroupByOrderNumber : JSONModel
756
/**
曹云霄's avatar
曹云霄 committed
757
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
758
 *
759 760
 *
 */
曹云霄's avatar
曹云霄 committed
761
@property (nonatomic, copy) NSString *orderNumber;
762
/**
763
 * (no documentation provided)
764 765
 *
 *
曹云霄's avatar
曹云霄 committed
766
 */
曹云霄's avatar
曹云霄 committed
767
@property (nonatomic, copy) NSString *orderTime;
768
/**
769
 * (no documentation provided)
勾芒's avatar
勾芒 committed
770
 *
771
 *
772
 */
曹云霄's avatar
曹云霄 committed
773
@property (nonatomic, copy) NSString *orderReceiptUrl;
774 775
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
776
 * @see TOJingdongEcardEntity
777
 *
曹云霄's avatar
曹云霄 committed
778
 */
曹云霄's avatar
曹云霄 committed
779 780
@property (nonatomic, strong) NSArray<TOJingdongEcardEntity> *eCards;
@end /* interface GroupByOrderNumber */
781 782 783



曹云霄's avatar
曹云霄 committed
784 785 786
/**
 * (no documentation provided)
 */
曹云霄's avatar
曹云霄 committed
787
@interface RsJingDongECardRequest : JSONModel
曹云霄's avatar
曹云霄 committed
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *guideIdEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *stateEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
曹云霄's avatar
曹云霄 committed
806
@end /* interface RsJingDongECardRequest */
曹云霄's avatar
曹云霄 committed
807 808 809



810 811 812
/**
 * (no documentation provided)
 */
曹云霄's avatar
曹云霄 committed
813
@interface RsSimpleJingDongECardRequest : JSONModel
814 815 816 817 818
/**
 * (no documentation provided)
 *
 *
 */
曹云霄's avatar
曹云霄 committed
819
@property (nonatomic, copy) NSString *guideIdEquals;
820 821 822 823 824
/**
 * (no documentation provided)
 *
 *
 */
曹云霄's avatar
曹云霄 committed
825
@property (nonatomic, copy) NSString *stateEquals;
826 827 828 829 830
/**
 * (no documentation provided)
 *
 *
 */
曹云霄's avatar
曹云霄 committed
831 832
@property (nonatomic, strong) DataPage *page;
@end /* interface RsSimpleJingDongECardRequest */
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904



/**
 *  查询京东E卡对象
 
 @author nevermore
 @since 0.1
 
 */
@interface LotteryDrawResponse : JSONModel
/**
 * (no documentation provided)
 * @see TOAwardEntity
 *
 */
@property (nonatomic, strong) NSArray<TOAwardEntity> *awards;
/**
 * (no documentation provided)
 * @see NSString
 *
 */
@property (nonatomic, strong) NSArray<NSString *> *descriptions;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *rule;
@end /* interface LotteryDrawResponse */



/**
 * (no documentation provided)
 */
@interface RsLotteryRequest : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *winnerIdEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *lotteryIdEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *orderNumberEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *stateEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface RsLotteryRequest */



/**
曹云霄's avatar
曹云霄 committed
905
 *  @author Flash
906 907 908
 @since 0.1
 
 */
曹云霄's avatar
曹云霄 committed
909
@interface OrderBill : JSONModel
910
/**
曹云霄's avatar
曹云霄 committed
911
 * (no documentation provided)
912 913 914
 *
 *
 */
曹云霄's avatar
曹云霄 committed
915
@property (nonatomic, strong) DataPage *datapage;
916
/**
曹云霄's avatar
曹云霄 committed
917
 * (no documentation provided)
918 919 920
 *
 *
 */
曹云霄's avatar
曹云霄 committed
921
@property (nonatomic, strong) TOOrderEntity *order;
922
/**
曹云霄's avatar
曹云霄 committed
923 924
 * (no documentation provided)
 * @see TOOrderdetailEntity
925 926
 *
 */
曹云霄's avatar
曹云霄 committed
927
@property (nonatomic, strong) NSArray<TOOrderdetailEntity> *orderdetailList;
928
/**
曹云霄's avatar
曹云霄 committed
929
 * (no documentation provided)
930 931 932
 *
 *
 */
曹云霄's avatar
曹云霄 committed
933
@property (nonatomic, strong) TOConsumerEntity *consumer;
934
/**
曹云霄's avatar
曹云霄 committed
935
 * (no documentation provided)
936 937 938
 *
 *
 */
曹云霄's avatar
曹云霄 committed
939 940
@property (nonatomic, strong) TOEmployee *employee;
@end /* interface OrderBill */
941 942 943 944 945 946 947 948 949 950 951



/**
 *  订单支付
 
 @author wsx
 @since 0.1
 
 */
@interface OrderPayRequest : JSONModel
勾芒's avatar
勾芒 committed
952
/**
953
 * 订单编号
勾芒's avatar
勾芒 committed
954 955 956
 *
 *
 */
957
@property (nonatomic, copy) NSString *orderNumber;
勾芒's avatar
勾芒 committed
958
/**
959
 * 旧状态
勾芒's avatar
勾芒 committed
960 961 962
 *
 *
 */
963
@property (nonatomic, copy) NSString *oldstate;
勾芒's avatar
勾芒 committed
964
/**
965
 * 新状态
勾芒's avatar
勾芒 committed
966 967 968
 *
 *
 */
969
@property (nonatomic, copy) NSString *fnewstate;
970
/**
971
 * 支付方式
972 973
 *
 *
974
 */
975
@property (nonatomic, copy) NSString *payType;
976
/**
977
 * 是否开票
勾芒's avatar
勾芒 committed
978
 *
979 980
 *
 */
981
@property (nonatomic, copy) NSString *isbill;
勾芒's avatar
勾芒 committed
982
/**
983
 * 发票类型
勾芒's avatar
勾芒 committed
984 985 986
 *
 *
 */
987
@property (nonatomic, copy) NSString *billType;
988
/**
989
 * 发票抬头
勾芒's avatar
勾芒 committed
990
 *
991 992
 *
 */
993
@property (nonatomic, copy) NSString *billTitle;
994
/**
995
 * 实际支付金额
996 997 998 999
 *
 *
 */
@property (nonatomic, strong) NSNumber *realAmount;
1000
/**
1001
 * 抽奖主题标识
1002 1003 1004 1005
 *
 *
 */
@property (nonatomic, copy) NSString *lotteryId;
1006 1007 1008 1009 1010 1011
/**
 * 抽奖记录标识
 *
 *
 */
@property (nonatomic, copy) NSString *drawId;
1012
/**
1013
 * 促销商品
1014 1015 1016 1017
 * @see PromotionGoods
 *
 */
@property (nonatomic, strong) NSArray<PromotionGoods> *promotionGoods;
1018
/**
1019
 * 京东E卡面额
1020 1021 1022 1023
 *
 *
 */
@property (nonatomic, assign) NSInteger jdCardDenomation;
曹云霄's avatar
曹云霄 committed
1024
/**
曹云霄's avatar
曹云霄 committed
1025
 * 抵扣
曹云霄's avatar
曹云霄 committed
1026 1027 1028 1029
 *
 *
 */
@property (nonatomic, strong) NSNumber *promotionMoney;
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
/**
 * 微信卡券卡号
 *
 *
 */
@property (nonatomic, copy) NSString *wxcardNumber;
/**
 * 微信卡券面额
 *
 *
 */
@property (nonatomic, strong) NSNumber *wxcardDenomation;
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
/**
 * 抵扣优先级
 *
 *
 */
@property (nonatomic, assign) NSInteger deductionPrority;
/**
 * 赠送商品优��级
 *
 *
 */
@property (nonatomic, assign) NSInteger goodsPrority;
/**
 * 京东E卡优先级
 *
 *
 */
@property (nonatomic, assign) NSInteger JDEcardsPrority;
/**
 * 消费者抽奖结果优先级
 *
 *
 */
@property (nonatomic, assign) NSInteger drawPrority;
/**
 * 导购抽奖主题优先级
 *
 *
 */
@property (nonatomic, assign) NSInteger lotteryPrority;
/**
 * 微信卡券优先级
 *
 *
 */
@property (nonatomic, assign) NSInteger wxCardPrority;
1078
@end /* interface OrderPayRequest */
1079 1080


勾芒's avatar
勾芒 committed
1081

1082
/**
曹云霄's avatar
曹云霄 committed
1083
 *  订单支付
1084
 
曹云霄's avatar
曹云霄 committed
1085 1086
 @author wsx
 @since 0.1
1087 1088
 
 */
曹云霄's avatar
曹云霄 committed
1089
@interface PromotionGoods : JSONModel
1090 1091
/**
 *
1092
 *
1093
 *
1094
 */
曹云霄's avatar
曹云霄 committed
1095
@property (nonatomic, strong) UCN *goods;
1096
/**
曹云霄's avatar
曹云霄 committed
1097
 *
1098
 *
1099
 *
1100
 */
曹云霄's avatar
曹云霄 committed
1101 1102
@property (nonatomic, strong) NSNumber *promotionNumber;
@end /* interface PromotionGoods */
1103 1104 1105 1106



/**
曹云霄's avatar
曹云霄 committed
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
 * (no documentation provided)
 */
@interface PassLevelCondition : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *titleLike;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *beginDateFrom;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *endDateTo;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, assign) BOOL validEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *employeeIdEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface PassLevelCondition */



/**
 *  奖品查询条件
 
 @author wolv
 
 
 */
@interface PrizeCondition : JSONModel
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *codeLike;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *nameLike;
/**
 *
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface PrizeCondition */



/**
 *  兑奖单查询返回包装对象
 
 @author wolv
 
 
 */
@interface RsPrizeBillResponse : JSONModel
/**
 * (no documentation provided)
 * @see RsPrizeBill
 *
 */
@property (nonatomic, strong) NSArray<RsPrizeBill> *bills;
@end /* interface RsPrizeBillResponse */



/**
 *  @author Administrator
1200 1201 1202
 @since 0.1
 
 */
曹云霄's avatar
曹云霄 committed
1203
@interface SceneCondition : JSONModel
1204
/**
曹云霄's avatar
曹云霄 committed
1205 1206
 * 查询条件:风格
 *
1207 1208
 *
 */
曹云霄's avatar
曹云霄 committed
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
@property (nonatomic, copy) NSString *styleEquals;
/**
 * 查询条件:空间
 *
 *
 */
@property (nonatomic, copy) NSString *spaceEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface SceneCondition */
1223 1224 1225



勾芒's avatar
勾芒 committed
1226 1227 1228 1229 1230
/**
 *  @author Administrator
 @since 0.1
 
 */
勾芒's avatar
勾芒 committed
1231
@interface SceneFilter : JSONModel
勾芒's avatar
勾芒 committed
1232 1233
/**
 * (no documentation provided)
勾芒's avatar
勾芒 committed
1234
 * @see DataDict
勾芒's avatar
勾芒 committed
1235 1236
 *
 */
勾芒's avatar
勾芒 committed
1237 1238 1239 1240 1241 1242 1243 1244
@property (nonatomic, strong) NSArray<DataDict> *styles;
/**
 * (no documentation provided)
 * @see DataDict
 *
 */
@property (nonatomic, strong) NSArray<DataDict> *space;
@end /* interface SceneFilter */
勾芒's avatar
勾芒 committed
1245 1246


曹云霄's avatar
曹云霄 committed
1247 1248

/**
1249
 *  @author Administrator
勾芒's avatar
勾芒 committed
1250 1251 1252
 @since 0.1
 
 */
1253
@interface RsShippingAddrEntity : JSONModel
勾芒's avatar
勾芒 committed
1254
/**
1255 1256
 * (no documentation provided)
 * @see TOShippingAddrEntity
勾芒's avatar
勾芒 committed
1257 1258
 *
 */
1259 1260
@property (nonatomic, strong) NSArray<TOShippingAddrEntity> *list;
@end /* interface RsShippingAddrEntity */
勾芒's avatar
勾芒 committed
1261 1262 1263 1264



/**
1265
 *  @author Debenson
勾芒's avatar
勾芒 committed
1266 1267 1268
 @since 0.1
 
 */
1269
@interface SaveShoppingCartRequest : JSONModel
勾芒's avatar
勾芒 committed
1270 1271 1272 1273 1274 1275 1276
/**
 * 消费者标识
 *
 *
 */
@property (nonatomic, copy) NSString *consumerId;
/**
1277
 * 商品标识
1278 1279 1280
 *
 *
 */
1281 1282 1283 1284 1285 1286 1287 1288
@property (nonatomic, copy) NSString *goodsId;
/**
 * 商品数量,>0表示添加, <0表示减少
 *
 *
 */
@property (nonatomic, copy) NSString *count;
@end /* interface SaveShoppingCartRequest */
勾芒's avatar
勾芒 committed
1289 1290 1291 1292



/**
1293
 *  购物车查询条件。
1294
 
勾芒's avatar
勾芒 committed
1295 1296
 @author Debenson
 @since 0.1
1297
 
曹云霄's avatar
曹云霄 committed
1298
 */
1299
@interface ShopCartFilter : JSONModel
1300
/**
1301
 * 消费者标识
1302 1303 1304
 *
 *
 */
1305
@property (nonatomic, copy) NSString *consumerId;
1306
/**
1307
 * 分页数据
1308 1309 1310
 *
 *
 */
1311 1312
@property (nonatomic, strong) DataPage *dp;
@end /* interface ShopCartFilter */
勾芒's avatar
勾芒 committed
1313 1314 1315



1316
/**
曹云霄's avatar
曹云霄 committed
1317 1318 1319 1320 1321 1322 1323 1324 1325
 *  学习任务查询条件。
 
 @author thor
 
 
 */
@interface StudyTaskCondition : JSONModel
/**
 * (no documentation provided)
1326
 *
曹云霄's avatar
曹云霄 committed
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
 *
 */
@property (nonatomic, copy) NSString *typeEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *stateEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *titleLike;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *employeeIdEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface StudyTaskCondition */



/**
 *  商品分享返回数据。
 
 @author Debenson
 @since 0.1
 
 */
@interface RsShareResponse : JSONModel
/**
 * 分享记录标识
 *
 *
 */
@property (nonatomic, copy) NSString *shareId;
/**
 * 分享页面链接
 *
 *
 */
@property (nonatomic, copy) NSString *url;
@end /* interface RsShareResponse */



/**
 *  @Title: Entity
1384
 @Description: 提现申请
勾芒's avatar
勾芒 committed
1385
 @author onlineGenerator
1386
 @date 2016-08-24 09:40:02
勾芒's avatar
勾芒 committed
1387 1388 1389
 @version V1.0
 
 
1390
 */
1391
@interface TOApplyBillEntity : JSONModel
1392
/**
1393
 * 方法: 取得java.lang.String
1394 1395 1396
 *
 *
 */
1397
@property (nonatomic, copy) NSString *fid;
1398
/**
1399
 * 方法: 取得java.lang.String
1400 1401 1402
 *
 *
 */
1403
@property (nonatomic, copy) NSString *createName;
1404
/**
1405
 * 方法: 取得java.lang.String
1406 1407 1408
 *
 *
 */
1409
@property (nonatomic, copy) NSString *createBy;
1410
/**
1411
 * 方法: 取得java.util.Date
1412 1413 1414
 *
 *
 */
1415
@property (nonatomic, copy) NSString *createDate;
1416
/**
曹云霄's avatar
曹云霄 committed
1417
 * 方法: 取得java.lang.String
1418 1419
 *
 *
曹云霄's avatar
曹云霄 committed
1420
 */
1421
@property (nonatomic, copy) NSString *updateName;
1422
/**
1423
 * 方法: 取得java.lang.String
1424 1425
 *
 *
曹云霄's avatar
曹云霄 committed
1426
 */
1427
@property (nonatomic, copy) NSString *updateBy;
1428
/**
1429
 * 方法: 取得java.util.Date
1430 1431
 *
 *
曹云霄's avatar
曹云霄 committed
1432
 */
1433
@property (nonatomic, copy) NSString *updateDate;
1434
/**
1435
 * 方法: 取得java.lang.String
1436 1437
 *
 *
曹云霄's avatar
曹云霄 committed
1438
 */
1439
@property (nonatomic, copy) NSString *sysOrgCode;
1440
/**
曹云霄's avatar
曹云霄 committed
1441
 * 方法: 取得java.lang.String
1442 1443
 *
 *
曹云霄's avatar
曹云霄 committed
1444
 */
1445
@property (nonatomic, copy) NSString *billNumber;
1446
/**
1447
 * 方法: 取得java.lang.String
1448 1449
 *
 *
曹云霄's avatar
曹云霄 committed
1450
 */
1451
@property (nonatomic, copy) NSString *guideId;
曹云霄's avatar
曹云霄 committed
1452
/**
1453
 * 方法: 取得java.lang.String
曹云霄's avatar
曹云霄 committed
1454 1455 1456
 *
 *
 */
1457
@property (nonatomic, copy) NSString *guideName;
1458
/**
1459
 * 方法: 取得java.math.BigDecimal
1460 1461
 *
 *
曹云霄's avatar
曹云霄 committed
1462
 */
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
@property (nonatomic, strong) NSNumber *applyMoney;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *beforeMoney;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *afterMoney;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *billStates;
曹云霄's avatar
曹云霄 committed
1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
/**
 * 方法: 取得申请单类型
 *
 *
 */
@property (nonatomic, copy) NSString *billType;
/**
 * 方法: 取得银行卡号
 *
 *
 */
@property (nonatomic, copy) NSString *bankCardNumber;
/**
 * 方法: 取得银行名称
 *
 *
 */
@property (nonatomic, copy) NSString *bankName;
/**
 * 方法: 取得银行简码
 *
 *
 */
@property (nonatomic, copy) NSString *bankCode;
1506
@end /* interface TOApplyBillEntity */
1507 1508 1509 1510



/**
曹云霄's avatar
曹云霄 committed
1511
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
1512
 @Description: 导购分成表
1513
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
1514
 @date 2016-05-16 16:15:27
1515 1516 1517
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
1518
 */
曹云霄's avatar
曹云霄 committed
1519
@interface TOCommissionHistEntity : JSONModel
曹云霄's avatar
曹云霄 committed
1520 1521
/**
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
1522 1523 1524
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1525
@property (nonatomic, copy) NSString *fid;
1526
/**
勾芒's avatar
勾芒 committed
1527 1528 1529
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
1530
 */
1531
@property (nonatomic, copy) NSString *createName;
勾芒's avatar
勾芒 committed
1532
/**
曹云霄's avatar
曹云霄 committed
1533
 * 方法: 取得java.util.Date
勾芒's avatar
勾芒 committed
1534 1535 1536
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1537
@property (nonatomic, copy) NSString *createDate;
1538
/**
曹云霄's avatar
曹云霄 committed
1539
 * 方法: 取得java.lang.String
1540 1541 1542
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1543
@property (nonatomic, copy) NSString *updateName;
1544 1545 1546 1547 1548
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1549
@property (nonatomic, copy) NSString *updateBy;
1550
/**
曹云霄's avatar
曹云霄 committed
1551
 * 方法: 取得java.util.Date
1552 1553 1554
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1555
@property (nonatomic, copy) NSString *updateDate;
1556 1557 1558 1559 1560
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1561
@property (nonatomic, copy) NSString *resellerCode;
1562
/**
曹云霄's avatar
曹云霄 committed
1563
 * 方法: 取得java.lang.String
1564 1565 1566
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1567
@property (nonatomic, copy) NSString *employeeId;
1568 1569 1570 1571 1572
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1573
@property (nonatomic, copy) NSString *orderId;
1574
/**
曹云霄's avatar
曹云霄 committed
1575
 * 方法: 取得java.math.BigDecimal
1576 1577 1578
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1579
@property (nonatomic, strong) NSNumber *amount;
1580
/**
曹云霄's avatar
曹云霄 committed
1581
 * 方法: 取得java.math.BigDecimal
1582 1583 1584
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1585
@property (nonatomic, strong) NSNumber *afteramount;
1586 1587 1588 1589 1590
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1591
@property (nonatomic, copy) NSString *remark;
1592
/**
曹云霄's avatar
曹云霄 committed
1593
 * 方法: 设置java.lang.String
1594 1595 1596
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1597
@property (nonatomic, copy) NSString *orderNumber;
1598
/**
曹云霄's avatar
曹云霄 committed
1599
 * (no documentation provided)
1600 1601 1602
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1603 1604 1605 1606 1607 1608 1609 1610
@property (nonatomic, copy) NSString *employeeName;
/**
 * 方法: 设置java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *state;
@end /* interface TOCommissionHistEntity */
1611 1612 1613 1614



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



1868
/**
曹云霄's avatar
曹云霄 committed
1869
 *  经销商和商品关系表。
1870
 
曹云霄's avatar
曹云霄 committed
1871 1872
 @author Debenson
 @since 0.1
1873 1874
 
 */
曹云霄's avatar
曹云霄 committed
1875
@interface VOResellerGoodsEntity : JSONModel
1876
/**
曹云霄's avatar
曹云霄 committed
1877
 * 方法: 取得java.lang.String
曹云霄's avatar
曹云霄 committed
1878 1879
 *
 *
1880
 */
曹云霄's avatar
曹云霄 committed
1881
@property (nonatomic, copy) NSString *fid;
1882
/**
曹云霄's avatar
曹云霄 committed
1883
 * 方法: 取得java.util.Date
1884 1885 1886
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1887
@property (nonatomic, copy) NSString *createDate;
1888
/**
曹云霄's avatar
曹云霄 committed
1889
 * 方法: 取得java.util.Date
1890 1891 1892
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1893
@property (nonatomic, copy) NSString *onlineTime;
1894
/**
曹云霄's avatar
曹云霄 committed
1895
 * 方法: 取得java.lang.String
1896 1897
 *
 *
1898
 */
曹云霄's avatar
曹云霄 committed
1899
@property (nonatomic, copy) NSString *company;
1900
/**
1901
 * 方法: 取得java.lang.String
1902 1903 1904
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1905
@property (nonatomic, copy) NSString *code;
1906 1907 1908 1909 1910
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1911
@property (nonatomic, copy) NSString *name;
1912
/**
曹云霄's avatar
曹云霄 committed
1913
 * 方法: 取得java.lang.String
1914 1915
 *
 *
曹云霄's avatar
曹云霄 committed
1916
 */
曹云霄's avatar
曹云霄 committed
1917
@property (nonatomic, copy) NSString *number;
1918
/**
1919
 * 方法: 取得java.lang.String
1920 1921 1922
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1923
@property (nonatomic, copy) NSString *categoryId;
曹云霄's avatar
曹云霄 committed
1924
/**
曹云霄's avatar
曹云霄 committed
1925
 * 方法: 取得java.lang.String
曹云霄's avatar
曹云霄 committed
1926 1927 1928
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1929
@property (nonatomic, copy) NSString *brandId;
1930
/**
1931
 * 方法: 取得java.lang.String
1932 1933 1934
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1935
@property (nonatomic, copy) NSString *keyword;
勾芒's avatar
勾芒 committed
1936
/**
曹云霄's avatar
曹云霄 committed
1937
 * 方法: 取得java.math.BigDecimal
勾芒's avatar
勾芒 committed
1938 1939 1940
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1941
@property (nonatomic, strong) NSNumber *guidePrice;
1942
/**
曹云霄's avatar
曹云霄 committed
1943
 * 方法: 取得java.math.BigDecimal
1944 1945 1946
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1947
@property (nonatomic, strong) NSNumber *tagPrice;
1948
/**
曹云霄's avatar
曹云霄 committed
1949
 * 方法: 取得java.math.BigDecimal
1950 1951 1952
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1953
@property (nonatomic, strong) NSNumber *costPrice;
1954 1955 1956 1957 1958
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1959
@property (nonatomic, copy) NSString *state;
1960
/**
曹云霄's avatar
曹云霄 committed
1961
 * 方法: 取得java.lang.Integer
1962 1963 1964
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1965
@property (nonatomic, assign) NSInteger inv;
1966
/**
曹云霄's avatar
曹云霄 committed
1967 1968 1969
 * 方法: 取得java.lang.String
 *
 *
1970
 */
曹云霄's avatar
曹云霄 committed
1971
@property (nonatomic, copy) NSString *detailedIntro;
1972
/**
曹云霄's avatar
曹云霄 committed
1973
 * 方法: 取得java.lang.Double
曹云霄's avatar
曹云霄 committed
1974 1975 1976
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1977
@property (nonatomic, assign) double weight;
曹云霄's avatar
曹云霄 committed
1978 1979
/**
 * 方法: 取得java.lang.String
1980 1981 1982
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1983
@property (nonatomic, copy) NSString *unit;
1984 1985 1986 1987 1988
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1989
@property (nonatomic, copy) NSString *productProfile;
1990 1991 1992 1993 1994
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
1995
@property (nonatomic, copy) NSString *power;
1996 1997 1998 1999 2000
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2001
@property (nonatomic, copy) NSString *colorTemperature;
2002 2003 2004 2005 2006
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2007
@property (nonatomic, copy) NSString *spec;
2008 2009 2010 2011 2012
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2013
@property (nonatomic, copy) NSString *function;
2014 2015 2016 2017 2018
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2019
@property (nonatomic, copy) NSString *material;
2020 2021 2022 2023 2024
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2025
@property (nonatomic, copy) NSString *lightSource;
2026
/**
曹云霄's avatar
曹云霄 committed
2027
 * 方法: 取得java.lang.String
2028 2029 2030
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2031
@property (nonatomic, copy) NSString *goodsStyle;
2032
/**
曹云霄's avatar
曹云霄 committed
2033
 * 方法: 取得java.lang.String
2034 2035 2036
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2037
@property (nonatomic, copy) NSString *series;
曹云霄's avatar
曹云霄 committed
2038 2039 2040 2041 2042
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2043
@property (nonatomic, copy) NSString *area;
曹云霄's avatar
曹云霄 committed
2044 2045 2046 2047 2048
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2049
@property (nonatomic, copy) NSString *size;
曹云霄's avatar
曹云霄 committed
2050 2051 2052 2053 2054
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2055
@property (nonatomic, copy) NSString *space;
勾芒's avatar
勾芒 committed
2056
/**
2057
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
2058 2059 2060
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2061
@property (nonatomic, copy) NSString *installMethod;
勾芒's avatar
勾芒 committed
2062 2063 2064 2065 2066
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2067
@property (nonatomic, copy) NSString *lightNumber;
2068
/**
勾芒's avatar
勾芒 committed
2069 2070 2071
 * 方法: 取得java.lang.String
 *
 *
2072
 */
曹云霄's avatar
曹云霄 committed
2073
@property (nonatomic, copy) NSString *pictures;
曹云霄's avatar
曹云霄 committed
2074
/**
曹云霄's avatar
曹云霄 committed
2075
 * 方法: 取得java.lang.String
曹云霄's avatar
曹云霄 committed
2076 2077 2078
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2079 2080 2081 2082 2083 2084 2085
@property (nonatomic, copy) NSString *barcode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *resellerId;
曹云霄's avatar
曹云霄 committed
2086 2087 2088 2089 2090
/**
 * (no documentation provided)
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2091
@property (nonatomic, copy) NSString *categoryName;
曹云霄's avatar
曹云霄 committed
2092
/**
曹云霄's avatar
曹云霄 committed
2093
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
2094 2095 2096
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2097 2098
@property (nonatomic, copy) NSString *brandName;
@end /* interface VOResellerGoodsEntity */
曹云霄's avatar
曹云霄 committed
2099 2100 2101 2102



/**
曹云霄's avatar
曹云霄 committed
2103 2104
 *  @Title: Entity
 @Description: 商品分类
曹云霄's avatar
曹云霄 committed
2105
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
2106
 @date 2016-05-10 10:17:53
曹云霄's avatar
曹云霄 committed
2107 2108 2109 2110
 @version V1.0
 
 
 */
曹云霄's avatar
曹云霄 committed
2111 2112 2113 2114 2115 2116 2117
@interface TOGoodsCategoryEntity : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *upperName;
曹云霄's avatar
曹云霄 committed
2118
/**
2119
 * 方法: 取得java.lang.String
曹云霄's avatar
曹云霄 committed
2120 2121 2122
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2123
@property (nonatomic, copy) NSString *fid;
曹云霄's avatar
曹云霄 committed
2124 2125 2126 2127 2128
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2129
@property (nonatomic, copy) NSString *code;
2130 2131 2132 2133 2134
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *upperId;
/**
 * 方法: 取得java.lang.Integer
 *
 *
 */
@property (nonatomic, assign) NSInteger level;
@end /* interface TOGoodsCategoryEntity */
2149 2150 2151 2152 2153



/**
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
2154
 @Description: 商品标签分类
2155
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
2156
 @date 2016-05-05 16:57:27
2157 2158 2159 2160
 @version V1.0
 
 
 */
曹云霄's avatar
曹云霄 committed
2161
@interface TOGoodsLabelCategoryEntity : JSONModel
2162
/**
曹云霄's avatar
曹云霄 committed
2163
 * 方法: 取得java.lang.String
2164 2165 2166
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2167
@property (nonatomic, copy) NSString *fid;
2168
/**
曹云霄's avatar
曹云霄 committed
2169
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
2170 2171 2172
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2173
@property (nonatomic, copy) NSString *sysOrgCode;
2174 2175 2176 2177 2178
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2179 2180 2181 2182 2183 2184 2185
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *code;
2186 2187 2188 2189 2190
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2191
@property (nonatomic, copy) NSString *name;
曹云霄's avatar
曹云霄 committed
2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205
@end /* interface TOGoodsLabelCategoryEntity */



/**
 *  @Title: Entity
 @Description: 京东E卡
 @author onlineGenerator
 @date 2016-10-18 16:34:26
 @version V1.0
 
 
 */
@interface TOJingdongEcardEntity : JSONModel
曹云霄's avatar
曹云霄 committed
2206
/**
曹云霄's avatar
曹云霄 committed
2207
 * 方法: 取得java.lang.String
曹云霄's avatar
曹云霄 committed
2208 2209 2210
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2211
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
2212
/**
2213
 * 方法: 取得java.lang.String
2214 2215 2216
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2217
@property (nonatomic, copy) NSString *createName;
2218
/**
2219
 * 方法: 取得java.lang.String
2220 2221 2222
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2223 2224 2225 2226 2227 2228 2229
@property (nonatomic, copy) NSString *createBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
2230
/**
曹云霄's avatar
曹云霄 committed
2231
 * 方法: 取得java.lang.String
2232 2233 2234
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2235
@property (nonatomic, copy) NSString *updateName;
2236
/**
勾芒's avatar
勾芒 committed
2237
 * 方法: 取得java.lang.String
2238 2239 2240
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2241 2242 2243 2244 2245 2246 2247
@property (nonatomic, copy) NSString *updateBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
2248
/**
曹云霄's avatar
曹云霄 committed
2249
 * 方法: 取得java.lang.String
2250 2251 2252
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2253
@property (nonatomic, copy) NSString *sysOrgCode;
2254
/**
曹云霄's avatar
曹云霄 committed
2255 2256 2257
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
2258
 */
曹云霄's avatar
曹云霄 committed
2259
@property (nonatomic, copy) NSString *cardNumber;
曹云霄's avatar
曹云霄 committed
2260
/**
曹云霄's avatar
曹云霄 committed
2261
 * 方法: 取得java.lang.String
2262 2263 2264
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2265
@property (nonatomic, copy) NSString *cardPassword;
曹云霄's avatar
曹云霄 committed
2266
/**
曹云霄's avatar
曹云霄 committed
2267
 * 方法: 取得java.lang.Integer
曹云霄's avatar
曹云霄 committed
2268 2269 2270
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2271
@property (nonatomic, assign) NSInteger denomation;
曹云霄's avatar
曹云霄 committed
2272
/**
曹云霄's avatar
曹云霄 committed
2273
 * 方法: 取得java.lang.String
曹云霄's avatar
曹云霄 committed
2274 2275 2276
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2277
@property (nonatomic, copy) NSString *state;
2278
/**
曹云霄's avatar
曹云霄 committed
2279 2280 2281
 * 方法: 取得java.lang.String
 *
 *
2282
 */
曹云霄's avatar
曹云霄 committed
2283
@property (nonatomic, copy) NSString *guideId;
2284
/**
曹云霄's avatar
曹云霄 committed
2285 2286 2287
 * 方法: 取得java.lang.String
 *
 *
2288
 */
曹云霄's avatar
曹云霄 committed
2289
@property (nonatomic, copy) NSString *orderNumber;
2290
/**
曹云霄's avatar
曹云霄 committed
2291
 * 方法: 取得java.lang.String
2292 2293 2294
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2295 2296
@property (nonatomic, copy) NSString *orderReceiptUrl;
@end /* interface TOJingdongEcardEntity */
2297 2298 2299 2300



/**
曹云霄's avatar
曹云霄 committed
2301
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
2302
 @Description: 抽奖记录
曹云霄's avatar
曹云霄 committed
2303
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
2304
 @date 2016-11-09 18:13:23
曹云霄's avatar
曹云霄 committed
2305
 @version V1.0
2306 2307 2308
 
 
 */
曹云霄's avatar
曹云霄 committed
2309
@interface TODrawEntity : JSONModel
2310
/**
曹云霄's avatar
曹云霄 committed
2311
 * 方法: 取得java.lang.String
2312 2313
 *
 *
2314
 */
曹云霄's avatar
曹云霄 committed
2315
@property (nonatomic, copy) NSString *fid;
2316
/**
曹云霄's avatar
曹云霄 committed
2317
 * 方法: 取得java.lang.String
2318 2319 2320
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2321
@property (nonatomic, copy) NSString *createName;
2322
/**
曹云霄's avatar
曹云霄 committed
2323 2324 2325
 * 方法: 取得java.lang.String
 *
 *
2326
 */
曹云霄's avatar
曹云霄 committed
2327 2328 2329 2330 2331 2332 2333
@property (nonatomic, copy) NSString *createBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
2334
/**
2335
 * 方法: 取得java.lang.String
2336 2337 2338
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2339 2340 2341 2342 2343 2344 2345
@property (nonatomic, copy) NSString *updateName;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
勾芒's avatar
勾芒 committed
2346
/**
2347
 * 方法: 取得java.util.Date
勾芒's avatar
勾芒 committed
2348 2349 2350
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2351
@property (nonatomic, copy) NSString *updateDate;
2352
/**
2353 2354 2355
 * 方法: 取得java.lang.String
 *
 *
2356
 */
曹云霄's avatar
曹云霄 committed
2357
@property (nonatomic, copy) NSString *sysOrgCode;
曹云霄's avatar
曹云霄 committed
2358
/**
曹云霄's avatar
曹云霄 committed
2359
 * 方法: 取得java.util.Date
曹云霄's avatar
曹云霄 committed
2360 2361 2362
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2363
@property (nonatomic, copy) NSString *drawDate;
2364 2365 2366 2367 2368
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2369
@property (nonatomic, copy) NSString *winnerId;
2370
/**
2371
 * 方法: 取得java.lang.String
2372 2373 2374
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2375
@property (nonatomic, copy) NSString *awardId;
2376
/**
勾芒's avatar
勾芒 committed
2377
 * 方法: 取得java.lang.String
2378 2379 2380
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
@property (nonatomic, copy) NSString *awardDescription;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *orderNumber;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *state;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *lotteryId;
@end /* interface TODrawEntity */
曹云霄's avatar
曹云霄 committed
2401 2402 2403 2404 2405



/**
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
2406
 @Description: 订单详情
曹云霄's avatar
曹云霄 committed
2407
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
2408
 @date 2016-05-06 12:53:09
曹云霄's avatar
曹云霄 committed
2409 2410 2411 2412
 @version V1.0
 
 
 */
曹云霄's avatar
曹云霄 committed
2413
@interface TOOrderdetailEntity : JSONModel
2414
/**
曹云霄's avatar
曹云霄 committed
2415
 * (no documentation provided)
2416 2417 2418
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2419
@property (nonatomic, copy) NSString *brandName;
曹云霄's avatar
曹云霄 committed
2420
/**
勾芒's avatar
勾芒 committed
2421 2422
 * 方法: 取得java.lang.String
 *
2423
 *
曹云霄's avatar
曹云霄 committed
2424
 */
曹云霄's avatar
曹云霄 committed
2425
@property (nonatomic, copy) NSString *fid;
2426
/**
2427
 * 方法: 取得java.lang.String
2428 2429 2430
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2431
@property (nonatomic, copy) NSString *goodsId;
2432
/**
勾芒's avatar
勾芒 committed
2433
 * 方法: 取得java.lang.String
2434 2435
 *
 *
曹云霄's avatar
曹云霄 committed
2436
 */
曹云霄's avatar
曹云霄 committed
2437
@property (nonatomic, copy) NSString *goodsCode;
曹云霄's avatar
曹云霄 committed
2438 2439 2440 2441 2442
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2443
@property (nonatomic, copy) NSString *goodsName;
曹云霄's avatar
曹云霄 committed
2444 2445 2446 2447 2448
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2449
@property (nonatomic, copy) NSString *goodsCover;
曹云霄's avatar
曹云霄 committed
2450 2451 2452 2453 2454
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2455
@property (nonatomic, copy) NSString *goodsSpec;
2456
/**
曹云霄's avatar
曹云霄 committed
2457 2458
 * 方法: 取得java.lang.String
 *
2459 2460
 *
 */
曹云霄's avatar
曹云霄 committed
2461
@property (nonatomic, copy) NSString *goodsBrand;
2462 2463 2464 2465 2466
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2467
@property (nonatomic, copy) NSString *goodsNum;
2468
/**
曹云霄's avatar
曹云霄 committed
2469
 * 方法: 取得java.math.BigDecimal
2470 2471 2472
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2473
@property (nonatomic, strong) NSNumber *goodsPrice;
2474
/**
曹云霄's avatar
曹云霄 committed
2475
 * 方法: 取得java.math.BigDecimal
2476 2477 2478
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2479
@property (nonatomic, strong) NSNumber *goodsTotalPrice;
曹云霄's avatar
曹云霄 committed
2480 2481 2482 2483 2484
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2485
@property (nonatomic, copy) NSString *orderId;
曹云霄's avatar
曹云霄 committed
2486 2487 2488 2489 2490
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2491
@property (nonatomic, copy) NSString *goodsUnit;
曹云霄's avatar
曹云霄 committed
2492 2493 2494 2495 2496
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2497 2498
@property (nonatomic, copy) NSString *remark;
@end /* interface TOOrderdetailEntity */
2499 2500 2501



2502
/**
2503
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
2504
 @Description: 闯关
2505
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
2506
 @date 2016-11-13 20:47:10
2507 2508
 @version V1.0
 
2509
 */
曹云霄's avatar
曹云霄 committed
2510
@interface TOPassLevelEntity : JSONModel
2511
/**
曹云霄's avatar
曹云霄 committed
2512
 * 方法: 取得主键
2513 2514 2515 2516
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
2517
/**
曹云霄's avatar
曹云霄 committed
2518
 * 方法: 取得创建人名称
2519 2520 2521
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2522
@property (nonatomic, copy) NSString *createName;
2523
/**
曹云霄's avatar
曹云霄 committed
2524
 * 方法: 取得创建人登录名称
2525 2526 2527
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2528
@property (nonatomic, copy) NSString *createBy;
2529
/**
曹云霄's avatar
曹云霄 committed
2530
 * 方法: 取得创建日期
2531 2532 2533
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2534
@property (nonatomic, copy) NSString *createDate;
2535
/**
曹云霄's avatar
曹云霄 committed
2536
 * 方法: 取得更新人名称
2537 2538 2539
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2540
@property (nonatomic, copy) NSString *updateName;
2541
/**
曹云霄's avatar
曹云霄 committed
2542
 * 方法: 取得更新人登录名称
2543 2544 2545
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2546 2547
@property (nonatomic, copy) NSString *updateBy;
/**
曹云霄's avatar
曹云霄 committed
2548
 * 方法: 取得更新日期
曹云霄's avatar
曹云霄 committed
2549 2550 2551 2552 2553
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
曹云霄's avatar
曹云霄 committed
2554
 * 方法: 取得所属部门
曹云霄's avatar
曹云霄 committed
2555 2556 2557 2558 2559
 *
 *
 */
@property (nonatomic, copy) NSString *sysOrgCode;
/**
曹云霄's avatar
曹云霄 committed
2560
 * 方法: 取得开始时间
曹云霄's avatar
曹云霄 committed
2561 2562 2563
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2564
@property (nonatomic, copy) NSString *beginDate;
曹云霄's avatar
曹云霄 committed
2565
/**
曹云霄's avatar
曹云霄 committed
2566
 * 方法: 取得结束时间
曹云霄's avatar
曹云霄 committed
2567 2568 2569
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2570
@property (nonatomic, copy) NSString *endDate;
曹云霄's avatar
曹云霄 committed
2571
/**
曹云霄's avatar
曹云霄 committed
2572
 * 方法: 取得及格分数线
曹云霄's avatar
曹云霄 committed
2573 2574 2575
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2576
@property (nonatomic, assign) NSInteger passGrade;
曹云霄's avatar
曹云霄 committed
2577
/**
曹云霄's avatar
曹云霄 committed
2578
 * 标题
曹云霄's avatar
曹云霄 committed
2579 2580 2581
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2582
@property (nonatomic, copy) NSString *title;
曹云霄's avatar
曹云霄 committed
2583
/**
曹云霄's avatar
曹云霄 committed
2584 2585 2586 2587 2588 2589 2590
 * 方法: 取得评分方法
 *
 * 取值: GRADEMETHOD_AUTO, GRADEMETHOD_MANUL,
 */
@property (nonatomic, copy) NSString *gradeMethod;
/**
 * 是否生效
曹云霄's avatar
曹云霄 committed
2591 2592 2593
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2594
@property (nonatomic, assign) BOOL valid;
曹云霄's avatar
曹云霄 committed
2595
/**
曹云霄's avatar
曹云霄 committed
2596
 * 闯关结果
曹云霄's avatar
曹云霄 committed
2597 2598 2599
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2600
@property (nonatomic, copy) NSString *passResult;
曹云霄's avatar
曹云霄 committed
2601
/**
曹云霄's avatar
曹云霄 committed
2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621
 * 题目列表
 * @see TOPassLevelTopicEntity
 *
 */
@property (nonatomic, strong) NSArray<TOPassLevelTopicEntity> *topics;
@end /* interface TOPassLevelEntity */



/**
 *  @Title: Entity
 @Description: 闯关题目选项
 @author onlineGenerator
 @date 2016-11-13 20:48:07
 @version V1.0
 
 */
@interface TOPassLevelTopicOptionEntity : JSONModel
/**
 * 方法: 取得主键
曹云霄's avatar
曹云霄 committed
2622 2623 2624
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2625
@property (nonatomic, copy) NSString *fid;
曹云霄's avatar
曹云霄 committed
2626
/**
曹云霄's avatar
曹云霄 committed
2627
 * 方法: 取得索引
曹云霄's avatar
曹云霄 committed
2628 2629 2630
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2631
@property (nonatomic, assign) NSInteger findex;
曹云霄's avatar
曹云霄 committed
2632
/**
曹云霄's avatar
曹云霄 committed
2633
 * 方法: 取得取值
曹云霄's avatar
曹云霄 committed
2634 2635 2636
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2637
@property (nonatomic, copy) NSString *value;
曹云霄's avatar
曹云霄 committed
2638
/**
曹云霄's avatar
曹云霄 committed
2639
 * 方法: 取得标题
曹云霄's avatar
曹云霄 committed
2640 2641 2642
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2643
@property (nonatomic, copy) NSString *name;
曹云霄's avatar
曹云霄 committed
2644
/**
曹云霄's avatar
曹云霄 committed
2645
 * 方法: 取得题目id
曹云霄's avatar
曹云霄 committed
2646 2647 2648
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2649
@property (nonatomic, copy) NSString *topicId;
2650
/**
曹云霄's avatar
曹云霄 committed
2651
 * (no documentation provided)
2652 2653 2654
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2655 2656 2657
@property (nonatomic, copy) NSString *answer;
@end /* interface TOPassLevelTopicOptionEntity */

2658 2659 2660


/**
曹云霄's avatar
曹云霄 committed
2661 2662 2663 2664
 *  兑奖单奖品明细
 
 @author wolv
 
2665
 */
曹云霄's avatar
曹云霄 committed
2666
@interface TOPrizeBillDetailsEntity : JSONModel
2667
/**
曹云霄's avatar
曹云霄 committed
2668
 *
2669 2670 2671
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685
@property (nonatomic, copy) NSString *fid;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *bill;
/**
 *
 *
 *
 */
@property (nonatomic, strong) TOPrizeEntity *prize;
@end /* interface TOPrizeBillDetailsEntity */
2686 2687


2688 2689 2690

/**
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
2691
 @Description: 场景
2692
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
2693
 @date 2016-05-05 18:39:39
2694 2695 2696 2697
 @version V1.0
 
 
 */
曹云霄's avatar
曹云霄 committed
2698
@interface TOSceneEntity : JSONModel
2699
/**
勾芒's avatar
勾芒 committed
2700
 * 方法: 取得java.lang.String
2701 2702
 *
 *
曹云霄's avatar
曹云霄 committed
2703
 */
2704 2705
@property (nonatomic, copy) NSString *fid;
/**
曹云霄's avatar
曹云霄 committed
2706
 * 方法: 取得java.lang.String
2707 2708 2709
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2710
@property (nonatomic, copy) NSString *sceneCode;
2711
/**
曹云霄's avatar
曹云霄 committed
2712
 * 方法: 取得java.lang.String
2713 2714
 *
 *
曹云霄's avatar
曹云霄 committed
2715
 */
曹云霄's avatar
曹云霄 committed
2716
@property (nonatomic, copy) NSString *name;
勾芒's avatar
勾芒 committed
2717
/**
曹云霄's avatar
曹云霄 committed
2718
 * 方法: 取得java.lang.String
勾芒's avatar
勾芒 committed
2719 2720 2721
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2722
@property (nonatomic, copy) NSString *pricure;
曹云霄's avatar
曹云霄 committed
2723 2724 2725 2726 2727
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2728
@property (nonatomic, copy) NSString *category;
曹云霄's avatar
曹云霄 committed
2729 2730 2731 2732 2733
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2734
@property (nonatomic, copy) NSString *style;
曹云霄's avatar
曹云霄 committed
2735
/**
曹云霄's avatar
曹云霄 committed
2736
 * 方法: 取得java.lang.String
曹云霄's avatar
曹云霄 committed
2737 2738 2739
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2740 2741 2742 2743 2744
@property (nonatomic, copy) NSString *space;
@end /* interface TOSceneEntity */



曹云霄's avatar
曹云霄 committed
2745
/**
曹云霄's avatar
曹云霄 committed
2746 2747 2748 2749 2750 2751 2752
 *  @Title: Entity
 @Description: t_o_shipping_addr
 @author onlineGenerator
 @date 2016-05-14 16:14:15
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
2753
 */
曹云霄's avatar
曹云霄 committed
2754
@interface TOShippingAddrEntity : JSONModel
曹云霄's avatar
曹云霄 committed
2755 2756 2757 2758 2759
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2760
@property (nonatomic, copy) NSString *fid;
曹云霄's avatar
曹云霄 committed
2761 2762 2763 2764 2765
/**
 * 方法: 取得java.util.Date
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2766
@property (nonatomic, copy) NSString *createDate;
曹云霄's avatar
曹云霄 committed
2767 2768 2769 2770 2771
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2772
@property (nonatomic, copy) NSString *sysOrgCode;
曹云霄's avatar
曹云霄 committed
2773 2774 2775 2776 2777
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2778
@property (nonatomic, copy) NSString *name;
曹云霄's avatar
曹云霄 committed
2779 2780 2781 2782 2783
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2784
@property (nonatomic, copy) NSString *miblephone;
曹云霄's avatar
曹云霄 committed
2785 2786 2787 2788 2789
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2790
@property (nonatomic, copy) NSString *province;
曹云霄's avatar
曹云霄 committed
2791 2792 2793 2794 2795
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2796
@property (nonatomic, copy) NSString *city;
曹云霄's avatar
曹云霄 committed
2797 2798 2799 2800 2801
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2802
@property (nonatomic, copy) NSString *country;
曹云霄's avatar
曹云霄 committed
2803 2804 2805 2806 2807
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2808
@property (nonatomic, copy) NSString *address;
曹云霄's avatar
曹云霄 committed
2809 2810 2811 2812 2813
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2814 2815 2816 2817 2818
@property (nonatomic, copy) NSString *consumerId;
@end /* interface TOShippingAddrEntity */



2819
/**
曹云霄's avatar
曹云霄 committed
2820 2821 2822 2823 2824 2825 2826
 *  @Title: Entity
 @Description: 学习员工
 @author onlineGenerator
 @date 2016-11-05 17:15:01
 @version V1.0
 
 
2827
 */
曹云霄's avatar
曹云霄 committed
2828
@interface TOStudyEmployeeEntity : JSONModel
2829
/**
曹云霄's avatar
曹云霄 committed
2830
 * 唯一标识。
2831 2832 2833
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2834
@property (nonatomic, copy) NSString *fid;
2835
/**
曹云霄's avatar
曹云霄 committed
2836
 * 员工id。
2837 2838 2839
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2840
@property (nonatomic, copy) NSString *employeeId;
2841
/**
曹云霄's avatar
曹云霄 committed
2842
 * 学习任务id。
2843 2844 2845
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2846
@property (nonatomic, copy) NSString *taskId;
曹云霄's avatar
曹云霄 committed
2847
/**
曹云霄's avatar
曹云霄 committed
2848
 * 员工用户名
2849 2850
 *
 *
曹云霄's avatar
曹云霄 committed
2851
 */
曹云霄's avatar
曹云霄 committed
2852
@property (nonatomic, copy) NSString *empName;
曹云霄's avatar
曹云霄 committed
2853
/**
曹云霄's avatar
曹云霄 committed
2854
 * 员工实际名称
曹云霄's avatar
曹云霄 committed
2855 2856 2857
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2858
@property (nonatomic, copy) NSString *empRealName;
2859
/**
曹云霄's avatar
曹云霄 committed
2860
 * 员工部门
2861 2862 2863
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2864 2865
@property (nonatomic, copy) NSString *empDepart;
@end /* interface TOStudyEmployeeEntity */
曹云霄's avatar
曹云霄 committed
2866 2867 2868



2869
/**
曹云霄's avatar
曹云霄 committed
2870 2871
 *  @Title: Entity
 @Description: 考核题目
曹云霄's avatar
曹云霄 committed
2872
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
2873
 @date 2016-11-05 17:15:55
曹云霄's avatar
曹云霄 committed
2874 2875 2876
 @version V1.0
 
 
2877
 */
曹云霄's avatar
曹云霄 committed
2878
@interface TOStudyTopicEntity : JSONModel
2879
/**
曹云霄's avatar
曹云霄 committed
2880
 * 唯一标识。
2881 2882 2883
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2884
@property (nonatomic, copy) NSString *fid;
2885
/**
曹云霄's avatar
曹云霄 committed
2886
 * 行号
曹云霄's avatar
曹云霄 committed
2887 2888
 *
 *
勾芒's avatar
勾芒 committed
2889
 */
曹云霄's avatar
曹云霄 committed
2890
@property (nonatomic, assign) NSInteger lineNo;
2891
/**
曹云霄's avatar
曹云霄 committed
2892
 * 题目类型。
2893
 *
曹云霄's avatar
曹云霄 committed
2894
 * 取值: STUDYTOPICTYPE_SINGLE, STUDYTOPICTYPE_MULTIPLE, STUDYTOPICTYPE_TRUEORFALSE,
2895
 */
曹云霄's avatar
曹云霄 committed
2896
@property (nonatomic, copy) NSString *topicType;
2897
/**
曹云霄's avatar
曹云霄 committed
2898
 * 标题。
2899 2900 2901
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2902
@property (nonatomic, copy) NSString *title;
2903
/**
曹云霄's avatar
曹云霄 committed
2904
 * 答案。
2905 2906 2907
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2908
@property (nonatomic, copy) NSString *answer;
曹云霄's avatar
曹云霄 committed
2909
/**
曹云霄's avatar
曹云霄 committed
2910
 * 分数。
曹云霄's avatar
曹云霄 committed
2911 2912 2913
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2914
@property (nonatomic, strong) NSNumber *grade;
2915
/**
曹云霄's avatar
曹云霄 committed
2916
 * 任务id。
2917 2918 2919
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2920
@property (nonatomic, copy) NSString *taskId;
2921
/**
曹云霄's avatar
曹云霄 committed
2922 2923
 * 选项列表
 * @see TOStudyTopicOptionEntity
2924 2925
 *
 */
曹云霄's avatar
曹云霄 committed
2926
@property (nonatomic, strong) NSArray<TOStudyTopicOptionEntity> *options;
2927
/**
曹云霄's avatar
曹云霄 committed
2928
 * (no documentation provided)
2929 2930 2931
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2932
@property (nonatomic, copy) NSString *option;
曹云霄's avatar
曹云霄 committed
2933
/**
曹云霄's avatar
曹云霄 committed
2934
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
2935 2936 2937
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2938 2939 2940 2941 2942
@property (nonatomic, copy) NSString *topicTypeName;
@end /* interface TOStudyTopicEntity */



曹云霄's avatar
曹云霄 committed
2943
/**
曹云霄's avatar
曹云霄 committed
2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954
 *  @Title: Entity
 @Description: 学习类型
 @author onlineGenerator
 @date 2016-11-05 16:44:04
 @version V1.0
 
 
 */
@interface TOStudyTypeEntity : JSONModel
/**
 * 唯一标识。
曹云霄's avatar
曹云霄 committed
2955 2956 2957
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2958
@property (nonatomic, copy) NSString *fid;
2959
/**
曹云霄's avatar
曹云霄 committed
2960
 * 名称。
2961 2962 2963
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2964
@property (nonatomic, copy) NSString *name;
2965
/**
曹云霄's avatar
曹云霄 committed
2966
 * 附件id
2967 2968 2969
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2970
@property (nonatomic, copy) NSString *attachmentId;
2971
/**
曹云霄's avatar
曹云霄 committed
2972
 * 附件
2973 2974 2975
 *
 *
 */
曹云霄's avatar
曹云霄 committed
2976 2977
@property (nonatomic, strong) TOAttachmentEntity *attachment;
@end /* interface TOStudyTypeEntity */
2978 2979 2980 2981



/**
曹云霄's avatar
曹云霄 committed
2982
 *  促销动作。
2983
 
曹云霄's avatar
曹云霄 committed
2984 2985
 @author Debenson
 @since 0.1
2986 2987
 
 */
曹云霄's avatar
曹云霄 committed
2988 2989 2990 2991 2992
@interface Action : JSONModel
@end /* interface Action */



勾芒's avatar
勾芒 committed
2993
/**
曹云霄's avatar
曹云霄 committed
2994 2995 2996 2997 2998
 * (no documentation provided)
 */
@interface IdEntity : JSONModel
/**
 * (no documentation provided)
2999 3000
 *
 *
曹云霄's avatar
曹云霄 committed
3001
 */
勾芒's avatar
勾芒 committed
3002
@property (nonatomic, copy) NSString *fid;
曹云霄's avatar
曹云霄 committed
3003 3004 3005 3006
@end /* interface IdEntity */



勾芒's avatar
勾芒 committed
3007
/**
曹云霄's avatar
曹云霄 committed
3008 3009 3010 3011 3012
 *  UUID + CODE + NAME
 
 @author Debenson
 @since 0.1
 
勾芒's avatar
勾芒 committed
3013
 */
曹云霄's avatar
曹云霄 committed
3014
@interface UCN : JSONModel
勾芒's avatar
勾芒 committed
3015
/**
曹云霄's avatar
曹云霄 committed
3016
 * (no documentation provided)
勾芒's avatar
勾芒 committed
3017 3018 3019
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3020
@property (nonatomic, copy) NSString *uuid;
勾芒's avatar
勾芒 committed
3021
/**
曹云霄's avatar
曹云霄 committed
3022
 * (no documentation provided)
勾芒's avatar
勾芒 committed
3023 3024 3025
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3026
@property (nonatomic, copy) NSString *code;
勾芒's avatar
勾芒 committed
3027
/**
曹云霄's avatar
曹云霄 committed
3028
 * (no documentation provided)
勾芒's avatar
勾芒 committed
3029 3030 3031
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3032
@property (nonatomic, copy) NSString *name;
曹云霄's avatar
曹云霄 committed
3033
@end /* interface UCN */
曹云霄's avatar
曹云霄 committed
3034 3035 3036 3037 3038



/**
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
3039
 @Description: 题目选项
曹云霄's avatar
曹云霄 committed
3040
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
3041
 @date 2016-11-05 17:15:55
曹云霄's avatar
曹云霄 committed
3042 3043 3044 3045
 @version V1.0
 
 
 */
曹云霄's avatar
曹云霄 committed
3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076
@interface TOStudyTopicOptionEntity : JSONModel
/**
 * 唯一标识。
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 索引。
 *
 *
 */
@property (nonatomic, assign) NSInteger findex;
/**
 * 取值,单选或者多选为ABCD,判断题为0或1。
 *
 *
 */
@property (nonatomic, copy) NSString *value;
/**
 * 标题。
 *
 *
 */
@property (nonatomic, copy) NSString *name;
/**
 * 题目id。
 *
 *
 */
@property (nonatomic, copy) NSString *topicId;
曹云霄's avatar
曹云霄 committed
3077 3078 3079 3080 3081
/**
 * (no documentation provided)
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3082 3083 3084 3085 3086
@property (nonatomic, copy) NSString *answer;
@end /* interface TOStudyTopicOptionEntity */



勾芒's avatar
勾芒 committed
3087
/**
曹云霄's avatar
曹云霄 committed
3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100
 *  学习任务。
 
 @Title: Entity
 @Description: 学习任务
 @author onlineGenerator
 @date 2016-11-05 17:15:01
 @version V1.0
 
 
 */
@interface TOStudyTaskEntity : JSONModel
/**
 * 唯一标识。
3101 3102 3103
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3104
@property (nonatomic, copy) NSString *fid;
3105
/**
曹云霄's avatar
曹云霄 committed
3106
 * 创建人名称。
3107 3108 3109
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3110
@property (nonatomic, copy) NSString *createName;
3111
/**
曹云霄's avatar
曹云霄 committed
3112
 * 创建人登录名称。
3113 3114 3115
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3116
@property (nonatomic, copy) NSString *createBy;
3117
/**
曹云霄's avatar
曹云霄 committed
3118
 * 创建日期。
3119 3120 3121
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3122
@property (nonatomic, copy) NSString *createDate;
3123
/**
曹云霄's avatar
曹云霄 committed
3124
 * 更新人名称。
3125 3126 3127
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267
@property (nonatomic, copy) NSString *updateName;
/**
 * 更新人登录名称。
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
 * 更新日期。
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
 * 所属部门。
 *
 *
 */
@property (nonatomic, copy) NSString *sysOrgCode;
/**
 * 学习类型。
 *
 *
 */
@property (nonatomic, copy) NSString *studyType;
/**
 * 及格分数。
 *
 *
 */
@property (nonatomic, assign) NSInteger passGrade;
/**
 * 考核时长。
 *
 *
 */
@property (nonatomic, assign) NSInteger examMinute;
/**
 * 任务状态
 *
 * 取值: STUDYTASKSTATE_INITIAL, STUDYTASKSTATE_SUBMITTED,
 */
@property (nonatomic, copy) NSString *state;
/**
 * 标题
 *
 *
 */
@property (nonatomic, copy) NSString *title;
/**
 * 学习类型名称
 *
 *
 */
@property (nonatomic, copy) NSString *typeName;
/**
 * 考核结果,0表示考核不通过,1表示考核通过,为空表示未考核
 *
 *
 */
@property (nonatomic, assign) NSInteger examResult;
/**
 * 学习内容
 *
 *
 */
@property (nonatomic, copy) NSString *content;
/**
 * 讲师
 *
 *
 */
@property (nonatomic, copy) NSString *teacher;
/**
 * 讲师介绍
 *
 *
 */
@property (nonatomic, copy) NSString *teacherIntro;
/**
 * 针对人员
 *
 *
 */
@property (nonatomic, copy) NSString *suitabler;
/**
 * 附件列表
 *
 *
 */
@property (nonatomic, copy) NSString *attachmentId;
/**
 * 学习视频或者PPT
 *
 *
 */
@property (nonatomic, strong) TOAttachmentEntity *attachment;
/**
 * 讲师照片
 *
 *
 */
@property (nonatomic, strong) TOAttachmentEntity *teacherAttachment;
/**
 * 视频或者ppt名称
 *
 *
 */
@property (nonatomic, copy) NSString *attachmentName;
/**
 * 考核员工列表
 * @see TOStudyEmployeeEntity
 *
 */
@property (nonatomic, strong) NSArray<TOStudyEmployeeEntity> *employees;
/**
 * 考核题目列表
 * @see TOStudyTopicEntity
 *
 */
@property (nonatomic, strong) NSArray<TOStudyTopicEntity> *topics;
/**
 * 状态名称
 *
 *
 */
@property (nonatomic, copy) NSString *stateName;
/**
 * 分类id
 *
 *
 */
@property (nonatomic, copy) NSString *studyCategory;
/**
 * 分类标题
 *
 *
 */
@property (nonatomic, copy) NSString *categoryName;
@end /* interface TOStudyTaskEntity */
曹云霄's avatar
曹云霄 committed
3268 3269 3270 3271



/**
曹云霄's avatar
曹云霄 committed
3272 3273 3274 3275 3276
 *  @Title: Entity
 @Description: t_o_shopcart
 @author onlineGenerator
 @date 2016-05-13 14:26:57
 @version V1.0
曹云霄's avatar
曹云霄 committed
3277 3278 3279
 
 
 */
曹云霄's avatar
曹云霄 committed
3280 3281 3282 3283 3284 3285 3286
@interface TOShopcartEntity : JSONModel
/**
 * 商品详情
 *
 *
 */
@property (nonatomic, strong) VOResellerGoodsEntity *goods;
3287 3288 3289 3290 3291
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3292
@property (nonatomic, copy) NSString *fid;
曹云霄's avatar
曹云霄 committed
3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *createName;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *createBy;
3305
/**
曹云霄's avatar
曹云霄 committed
3306
 * 方法: 取得java.util.Date
3307 3308 3309
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3310
@property (nonatomic, copy) NSString *createDate;
曹云霄's avatar
曹云霄 committed
3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *updateName;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
3323
/**
曹云霄's avatar
曹云霄 committed
3324
 * 方法: 取得java.util.Date
3325 3326
 *
 *
3327
 */
曹云霄's avatar
曹云霄 committed
3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962
@property (nonatomic, copy) NSString *updateDate;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsId;
/**
 * 方法: 取得java.lang.Integer
 *
 *
 */
@property (nonatomic, assign) NSInteger 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 */



/**
 *  积分变更记录
 
 @author wolv
 
 */
@interface TOScoreRecordEntity : JSONModel
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *employeeId;
/**
 *
 *
 *
 */
@property (nonatomic, assign) double score;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *sourceId;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *sourceType;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *sourceReason;
@end /* interface TOScoreRecordEntity */



/**
 *  奖品
 
 @author wolv
 
 */
@interface TOPrizeEntity : JSONModel
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *picture;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *createName;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *createBy;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *updateName;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *code;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *name;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
@end /* interface TOPrizeEntity */



/**
 *  兑奖单实体
 
 @author wolv
 
 */
@interface TOPrizeBillEntity : JSONModel
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *createName;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *createBy;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *updateName;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *billnumber;
/**
 *
 *
 * 取值: TOPRIZEBILLENTITYSTATE_REQUESTED, TOPRIZEBILLENTITYSTATE_SHIPPED, TOPRIZEBILLENTITYSTATE_DONE,
 */
@property (nonatomic, copy) NSString *state;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *receiver;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *mobilephone;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *receiveAddress;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *employee;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *logisticsCompany;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *trackingNumber;
@end /* interface TOPrizeBillEntity */



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



/**
 *  @Title: Entity
 @Description: 闯关题目
 @author onlineGenerator
 @date 2016-11-13 20:47:49
 @version V1.0
 
 */
@interface TOPassLevelTopicEntity : JSONModel
/**
 * 方法: 取得主键
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得题目类型
 *
 * 取值: PASSLEVELTOPICTYPE_SINGLE, PASSLEVELTOPICTYPE_MULTIPLE, PASSLEVELTOPICTYPE_TRUEORFALSE, PASSLEVELTOPICTYPE_GAPFILLING, PASSLEVELTOPICTYPE_SHORTANSWER,
 */
@property (nonatomic, copy) NSString *topicType;
/**
 * 方法: 取得行号
 *
 *
 */
@property (nonatomic, assign) NSInteger lineNo;
/**
 * 方法: 取得标题
 *
 *
 */
@property (nonatomic, copy) NSString *title;
/**
 * 方法: 取得答案
 *
 *
 */
@property (nonatomic, copy) NSString *answer;
/**
 * 方法: 取得分数
 *
 *
 */
@property (nonatomic, strong) NSNumber *grade;
/**
 * 方法: 取得闯关id
 *
 *
 */
@property (nonatomic, copy) NSString *passLevelId;
/**
 * 选项
 * @see TOPassLevelTopicOptionEntity
 *
 */
@property (nonatomic, strong) NSArray<TOPassLevelTopicOptionEntity> *options;
@end /* interface TOPassLevelTopicEntity */



/**
 *  @Title: Entity
 @Description: 订油单的促销事件记录
 @author onlineGenerator
 @date 2016-10-19 17:43:12
 @version V1.0
 
 
 */
@interface TOOrderPromotionEntity : JSONModel
/**
 * 方法: 主键
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 创建人名称
 *
 *
 */
@property (nonatomic, copy) NSString *createName;
/**
 * 方法: 创建人登录名称
 *
 *
 */
@property (nonatomic, copy) NSString *createBy;
/**
 * 方法: 创建日期
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
/**
 * 方法: 更新人名称
 *
 *
 */
@property (nonatomic, copy) NSString *updateName;
/**
 * 方法: 更新人登录名称
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
 * 方法: 更新日期
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
 * 方法: 所属部门
 *
 *
 */
@property (nonatomic, copy) NSString *sysOrgCode;
/**
 * 方法: 商品标识
 *
 *
 */
@property (nonatomic, copy) NSString *goodsId;
/**
 * 方法: 商品代码
 *
 *
 */
@property (nonatomic, copy) NSString *goodsCode;
/**
 * 方法: 商品名称
 *
 *
 */
@property (nonatomic, copy) NSString *goodsName;
/**
 * 方法: 促销商品数量
 *
 *
 */
@property (nonatomic, strong) NSNumber *promotionNumber;
/**
 * 方法: 促销金额
 *
 *
 */
@property (nonatomic, strong) NSNumber *promotionMoney;
/**
 * 方法: 订单号
 *
 *
 */
@property (nonatomic, copy) NSString *orderNumber;
/**
 * 方法: 折扣率
 *
 *
 */
@property (nonatomic, strong) NSNumber *discountRate;
/**
 * 方法: 抽奖红包
 *
 *
 */
@property (nonatomic, copy) NSString *lotteryPackage;
/**
 * 方法: 微信卡号
 *
 *
 */
@property (nonatomic, copy) NSString *wxcardNumber;
/**
 * 方法: 微信卡券面额
 *
 *
 */
@property (nonatomic, copy) NSString *wxcardDenomation;
/**
 * 方法: 微信卡券实际减免
 *
 *
 */
@property (nonatomic, copy) NSString *wxcardRealDeduction;
/**
 * 方法: 京东E卡面额
 *
 *
 */
@property (nonatomic, strong) NSNumber *jdecardDenomation;
/**
 * 方法: 红包面额
 *
 *
 */
@property (nonatomic, strong) NSNumber *redPackageNumber;
/**
 * 方法: 红包次数
 *
 *
 */
@property (nonatomic, strong) NSNumber *redPackageCount;
/**
 * 方法: 取得优先级
 *
 *
 */
@property (nonatomic, assign) NSInteger prority;
@end /* interface TOOrderPromotionEntity */



/**
 *  @Title: Entity
 @Description: 订单
 @author onlineGenerator
 @date 2016-05-06 12:53:09
 @version V1.0
 
 
 */
@interface TOOrderEntity : JSONModel
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@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 *updateName;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
 * 方法: 取得java.util.Date
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *sysOrgCode;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@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;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *consumerId;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *goodsNum;
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
@property (nonatomic, strong) NSNumber *orderPrice;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *receiverName;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *receiverMobile;
3963
/**
3964
 * 方法: 取得java.lang.String
3965 3966 3967
 *
 *
 */
曹云霄's avatar
曹云霄 committed
3968
@property (nonatomic, copy) NSString *receiverAddress;
3969
/**
曹云霄's avatar
曹云霄 committed
3970
 * 方法: 取得java.lang.String
3971 3972
 *
 *
勾芒's avatar
勾芒 committed
3973
 */
曹云霄's avatar
曹云霄 committed
3974
@property (nonatomic, copy) NSString *isBill;
3975
/**
曹云霄's avatar
曹云霄 committed
3976
 * 方法: 取得java.lang.String
3977 3978
 *
 *
曹云霄's avatar
曹云霄 committed
3979
 */
曹云霄's avatar
曹云霄 committed
3980
@property (nonatomic, copy) NSString *billType;
3981
/**
勾芒's avatar
勾芒 committed
3982
 * 方法: 取得java.lang.String
3983 3984
 *
 *
曹云霄's avatar
曹云霄 committed
3985
 */
曹云霄's avatar
曹云霄 committed
3986
@property (nonatomic, copy) NSString *billTitle;
3987
/**
曹云霄's avatar
曹云霄 committed
3988
 * 方法: 取得java.lang.String
3989 3990
 *
 *
曹云霄's avatar
曹云霄 committed
3991
 */
曹云霄's avatar
曹云霄 committed
3992
@property (nonatomic, copy) NSString *payType;
3993
/**
曹云霄's avatar
曹云霄 committed
3994
 * (no documentation provided)
3995 3996
 *
 *
曹云霄's avatar
曹云霄 committed
3997
 */
曹云霄's avatar
曹云霄 committed
3998
@property (nonatomic, copy) NSString *consumerName;
3999
/**
曹云霄's avatar
曹云霄 committed
4000
 * (no documentation provided)
4001 4002
 *
 *
曹云霄's avatar
曹云霄 committed
4003
 */
曹云霄's avatar
曹云霄 committed
4004
@property (nonatomic, copy) NSString *guideName;
4005
/**
曹云霄's avatar
曹云霄 committed
4006
 * (no documentation provided)
4007 4008
 *
 *
曹云霄's avatar
曹云霄 committed
4009
 */
曹云霄's avatar
曹云霄 committed
4010
@property (nonatomic, copy) NSString *resellerName;
曹云霄's avatar
曹云霄 committed
4011 4012 4013 4014 4015
/**
 * 方法: 取得java.math.BigDecimal
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4016 4017 4018 4019 4020
@property (nonatomic, strong) NSNumber *oldPrice;
@end /* interface TOOrderEntity */



曹云霄's avatar
曹云霄 committed
4021 4022
/**
 *
曹云霄's avatar
曹云霄 committed
4023 4024 4025 4026 4027 4028 4029
 @Title: Entity
 @Description: 奖品详情
 @author onlineGenerator
 @date 2016-11-09 18:13:23
 @version V1.0
 
 
曹云霄's avatar
曹云霄 committed
4030
 */
曹云霄's avatar
曹云霄 committed
4031
@interface TOAwardEntity : JSONModel
4032
/**
曹云霄's avatar
曹云霄 committed
4033
 * 方法: 取得java.lang.String
4034 4035
 *
 *
曹云霄's avatar
曹云霄 committed
4036
 */
曹云霄's avatar
曹云霄 committed
4037
@property (nonatomic, copy) NSString *fid;
4038
/**
曹云霄's avatar
曹云霄 committed
4039
 * 方法: 取得java.lang.String
4040 4041 4042
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4043
@property (nonatomic, copy) NSString *createName;
4044
/**
曹云霄's avatar
曹云霄 committed
4045
 * 方法: 取得java.lang.String
4046 4047 4048
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4049
@property (nonatomic, copy) NSString *createBy;
4050
/**
曹云霄's avatar
曹云霄 committed
4051
 * 方法: 取得java.util.Date
4052 4053 4054
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4055
@property (nonatomic, copy) NSString *createDate;
4056
/**
曹云霄's avatar
曹云霄 committed
4057 4058 4059
 * 方法: 取得java.lang.String
 *
 *
曹云霄's avatar
曹云霄 committed
4060
 */
曹云霄's avatar
曹云霄 committed
4061
@property (nonatomic, copy) NSString *updateName;
4062
/**
曹云霄's avatar
曹云霄 committed
4063
 * 方法: 取得java.lang.String
4064 4065 4066
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4067
@property (nonatomic, copy) NSString *updateBy;
4068
/**
曹云霄's avatar
曹云霄 committed
4069
 * 方法: 取得java.util.Date
4070 4071 4072
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4073
@property (nonatomic, copy) NSString *updateDate;
4074 4075
/**
 * 方法: 取得java.lang.String
4076 4077
 *
 *
曹云霄's avatar
曹云霄 committed
4078
 */
曹云霄's avatar
曹云霄 committed
4079
@property (nonatomic, copy) NSString *sysOrgCode;
4080
/**
曹云霄's avatar
曹云霄 committed
4081
 * 方法: 取得java.lang.Integer
4082 4083 4084
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4085
@property (nonatomic, assign) NSInteger remainTotal;
4086
/**
曹云霄's avatar
曹云霄 committed
4087
 * 方法: 取得java.math.BigDecimal
4088 4089
 *
 *
曹云霄's avatar
曹云霄 committed
4090
 */
曹云霄's avatar
曹云霄 committed
4091
@property (nonatomic, strong) NSNumber *drawRate;
4092
/**
勾芒's avatar
勾芒 committed
4093
 * 方法: 取得java.lang.String
4094 4095 4096
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4097
@property (nonatomic, copy) NSString *type;
4098
/**
曹云霄's avatar
曹云霄 committed
4099
 * 方法: 取得java.math.BigDecimal
曹云霄's avatar
曹云霄 committed
4100 4101
 *
 *
曹云霄's avatar
曹云霄 committed
4102
 */
曹云霄's avatar
曹云霄 committed
4103
@property (nonatomic, strong) NSNumber *number;
4104
/**
曹云霄's avatar
曹云霄 committed
4105
 * 方法: 取得java.lang.String
4106 4107
 *
 *
曹云霄's avatar
曹云霄 committed
4108
 */
曹云霄's avatar
曹云霄 committed
4109
@property (nonatomic, copy) NSString *fdescription;
曹云霄's avatar
曹云霄 committed
4110 4111 4112 4113 4114
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4115 4116 4117 4118 4119
@property (nonatomic, copy) NSString *lotteryId;
@end /* interface TOAwardEntity */



4120
/**
曹云霄's avatar
曹云霄 committed
4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131
 *
 @Title: Entity
 @Description: 导购银行卡信息
 @author onlineGenerator
 @date 2016-11-30 12:00:09
 @version V1.0
 
 */
@interface TOGuideBankcardEntity : JSONModel
/**
 * 方法: 取得主键
4132 4133
 *
 *
曹云霄's avatar
曹云霄 committed
4134
 */
曹云霄's avatar
曹云霄 committed
4135
@property (nonatomic, copy) NSString *fid;
4136
/**
曹云霄's avatar
曹云霄 committed
4137
 * 方法: 取得创建人名称
4138 4139
 *
 *
曹云霄's avatar
曹云霄 committed
4140
 */
曹云霄's avatar
曹云霄 committed
4141
@property (nonatomic, copy) NSString *createName;
4142
/**
曹云霄's avatar
曹云霄 committed
4143
 * 方法: 取得创建人登录名称
4144 4145
 *
 *
曹云霄's avatar
曹云霄 committed
4146
 */
曹云霄's avatar
曹云霄 committed
4147
@property (nonatomic, copy) NSString *createBy;
4148
/**
曹云霄's avatar
曹云霄 committed
4149
 * 方法: 取得创建日期
4150 4151 4152
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4153
@property (nonatomic, copy) NSString *createDate;
4154
/**
曹云霄's avatar
曹云霄 committed
4155
 * 方法: 取得更新人名称
4156 4157 4158
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4159
@property (nonatomic, copy) NSString *updateName;
4160
/**
曹云霄's avatar
曹云霄 committed
4161
 * 方法: 取得更新人登录名称
4162 4163 4164
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4165
@property (nonatomic, copy) NSString *updateBy;
勾芒's avatar
勾芒 committed
4166
/**
曹云霄's avatar
曹云霄 committed
4167
 * ��法: 取得更新日期
勾芒's avatar
勾芒 committed
4168 4169 4170
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4171
@property (nonatomic, copy) NSString *updateDate;
勾芒's avatar
勾芒 committed
4172
/**
曹云霄's avatar
曹云霄 committed
4173
 * 方法: 取得所属部门
勾芒's avatar
勾芒 committed
4174 4175 4176
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4177
@property (nonatomic, copy) NSString *sysOrgCode;
勾芒's avatar
勾芒 committed
4178
/**
曹云霄's avatar
曹云霄 committed
4179
 * 方法: 取得导购标识
勾芒's avatar
勾芒 committed
4180 4181 4182
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4183
@property (nonatomic, copy) NSString *guideId;
4184
/**
曹云霄's avatar
曹云霄 committed
4185
 * 方法: 取得银行卡号
4186 4187 4188
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202
@property (nonatomic, copy) NSString *bankCardNumber;
/**
 * 方法: 取得银行名称
 *
 *
 */
@property (nonatomic, copy) NSString *bankName;
/**
 * 方法: 取得银行简码
 *
 *
 */
@property (nonatomic, copy) NSString *bankCode;
@end /* interface TOGuideBankcardEntity */
4203 4204 4205



4206
/**
4207
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
4208
 @Description: 商品标签
4209
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
4210
 @date 2016-05-05 17:18:15
4211 4212 4213
 @version V1.0
 
 
4214
 */
曹云霄's avatar
曹云霄 committed
4215
@interface TOGoodsLabelEntity : JSONModel
4216
/**
4217
 * (no documentation provided)
4218 4219
 *
 *
4220
 */
曹云霄's avatar
曹云霄 committed
4221
@property (nonatomic, strong) TOGoodsLabelCategoryEntity *category;
4222
/**
曹云霄's avatar
曹云霄 committed
4223
 * 方法: 取得java.lang.String
4224 4225 4226
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4227
@property (nonatomic, copy) NSString *fid;
4228
/**
曹云霄's avatar
曹云霄 committed
4229
 * 方法: 取得java.lang.String
4230 4231 4232
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4233
@property (nonatomic, copy) NSString *sysOrgCode;
4234
/**
曹云霄's avatar
曹云霄 committed
4235
 * 方法: 取得java.lang.String
4236 4237 4238
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4239
@property (nonatomic, copy) NSString *sysCompanyCode;
4240
/**
曹云霄's avatar
曹云霄 committed
4241
 * 方法: 取得java.lang.String
4242 4243 4244
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265
@property (nonatomic, copy) NSString *name;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *categoryId;
@end /* interface TOGoodsLabelEntity */



/**
 *  @Title: Entity
 @Description: 商品品牌
 @author onlineGenerator
 @date 2016-05-05 16:14:51
 @version V1.0
 
 
 */
@interface TOGoodsBrandEntity : JSONModel
4266 4267 4268 4269 4270
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
4271
@property (nonatomic, copy) NSString *fid;
曹云霄's avatar
曹云霄 committed
4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *createName;
/**
 * 方法: 取得java.lang.String
 *
 *
 */
@property (nonatomic, copy) NSString *createBy;
4284
/**
勾芒's avatar
勾芒 committed
4285
 * 方法: 取得java.util.Date
4286 4287 4288
 *
 *
 */
勾芒's avatar
勾芒 committed
4289
@property (nonatomic, copy) NSString *createDate;
4290
/**
曹云霄's avatar
曹云霄 committed
4291
 * 方法: 取得java.lang.String
4292 4293 4294
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4295
@property (nonatomic, copy) NSString *sysOrgCode;
4296
/**
曹云霄's avatar
曹云霄 committed
4297
 * 方法: 取得java.lang.String
4298 4299 4300
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4301
@property (nonatomic, copy) NSString *sysCompanyCode;
4302
/**
曹云霄's avatar
曹云霄 committed
4303
 * 方法: 取得java.lang.String
4304 4305
 *
 *
曹云霄's avatar
曹云霄 committed
4306
 */
勾芒's avatar
勾芒 committed
4307
@property (nonatomic, copy) NSString *code;
4308 4309 4310 4311 4312
/**
 * 方法: 取得java.lang.String
 *
 *
 */
勾芒's avatar
勾芒 committed
4313
@property (nonatomic, copy) NSString *name;
4314
/**
曹云霄's avatar
曹云霄 committed
4315
 * 方法: 取得java.lang.Integer
4316 4317 4318
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4319
@property (nonatomic, copy) NSString *state;
4320
/**
勾芒's avatar
勾芒 committed
4321
 * 方法: 取得java.lang.String
4322 4323
 *
 *
曹云霄's avatar
曹云霄 committed
4324
 */
曹云霄's avatar
曹云霄 committed
4325
@property (nonatomic, copy) NSString *logo;
4326
/**
勾芒's avatar
勾芒 committed
4327
 * 方法: 取得java.lang.String
4328 4329 4330
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4331 4332 4333 4334 4335 4336 4337 4338 4339
@property (nonatomic, copy) NSString *fdescription;
@end /* interface TOGoodsBrandEntity */



/**
 * (no documentation provided)
 */
@interface TOGoodsForResellerEntity : JSONModel
4340 4341 4342 4343 4344
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4345
@property (nonatomic, copy) NSString *fid;
4346
/**
曹云霄's avatar
曹云霄 committed
4347
 * 方法: 取得java.lang.String
4348 4349 4350
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4351
@property (nonatomic, copy) NSString *resellerId;
4352
/**
曹云霄's avatar
曹云霄 committed
4353
 * (no documentation provided)
勾芒's avatar
勾芒 committed
4354 4355
 *
 *
4356
 */
曹云霄's avatar
曹云霄 committed
4357
@property (nonatomic, strong) TOGoodsEntity *goods;
4358
/**
曹云霄's avatar
曹云霄 committed
4359
 * (no documentation provided)
4360 4361 4362
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377
@property (nonatomic, copy) NSString *path;
@end /* interface TOGoodsForResellerEntity */



/**
 *  @Title: Entity
 @Description: 客户
 @author onlineGenerator
 @date 2016-05-08 18:08:58
 @version V1.0
 
 
 */
@interface TOConsumerEntity : JSONModel
4378
/**
勾芒's avatar
勾芒 committed
4379
 * 方法: 取得java.lang.String
4380 4381
 *
 *
曹云霄's avatar
曹云霄 committed
4382
 */
曹云霄's avatar
曹云霄 committed
4383
@property (nonatomic, copy) NSString *fid;
4384
/**
曹云霄's avatar
曹云霄 committed
4385
 * 方法: 取得java.lang.String
4386 4387
 *
 *
曹云霄's avatar
曹云霄 committed
4388
 */
曹云霄's avatar
曹云霄 committed
4389
@property (nonatomic, copy) NSString *createName;
4390
/**
勾芒's avatar
勾芒 committed
4391
 * 方法: 取得java.lang.String
4392 4393
 *
 *
曹云霄's avatar
曹云霄 committed
4394
 */
曹云霄's avatar
曹云霄 committed
4395
@property (nonatomic, copy) NSString *createBy;
4396
/**
曹云霄's avatar
曹云霄 committed
4397
 * 方法: 取得java.util.Date
4398 4399 4400
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4401
@property (nonatomic, copy) NSString *createDate;
4402 4403 4404 4405 4406
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4407
@property (nonatomic, copy) NSString *sysOrgCode;
4408 4409 4410 4411 4412
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4413
@property (nonatomic, copy) NSString *name;
4414 4415 4416 4417 4418
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4419
@property (nonatomic, copy) NSString *mobile;
4420 4421 4422 4423 4424
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4425
@property (nonatomic, copy) NSString *province;
4426 4427 4428 4429 4430
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4431
@property (nonatomic, copy) NSString *city;
4432 4433 4434 4435 4436
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4437
@property (nonatomic, copy) NSString *country;
4438 4439 4440 4441 4442
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4443
@property (nonatomic, copy) NSString *address;
4444 4445 4446 4447 4448
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4449
@property (nonatomic, copy) NSString *picture;
4450
/**
曹云霄's avatar
曹云霄 committed
4451
 * 方法: 取得java.util.Date
4452 4453 4454
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4455
@property (nonatomic, copy) NSString *lastVisitedTime;
4456 4457 4458 4459 4460
/**
 * 方法: 取得java.lang.String
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4461 4462 4463 4464 4465
@property (nonatomic, copy) NSString *company;
@end /* interface TOConsumerEntity */



4466
/**
曹云霄's avatar
曹云霄 committed
4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477
 *  @Title: Entity
 @Description: 附件
 @author onlineGenerator
 @date 2016-11-05 16:44:26
 @version V1.0
 
 
 */
@interface TOAttachmentEntity : JSONModel
/**
 * 主键
4478 4479 4480
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4481
@property (nonatomic, copy) NSString *fid;
4482
/**
曹云霄's avatar
曹云霄 committed
4483
 * 文件名称
4484 4485 4486
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4487
@property (nonatomic, copy) NSString *fileName;
4488
/**
曹云霄's avatar
曹云霄 committed
4489
 * 文件url
4490 4491 4492
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4493
@property (nonatomic, copy) NSString *fileUrl;
4494
/**
曹云霄's avatar
曹云霄 committed
4495
 * 缩略图名称
4496 4497 4498
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4499
@property (nonatomic, copy) NSString *thumbnailName;
勾芒's avatar
勾芒 committed
4500
/**
曹云霄's avatar
曹云霄 committed
4501
 * 缩略图url
勾芒's avatar
勾芒 committed
4502 4503 4504
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4505
@property (nonatomic, copy) NSString *thumbnailUrl;
勾芒's avatar
勾芒 committed
4506
/**
曹云霄's avatar
曹云霄 committed
4507
 * 实体类型
勾芒's avatar
勾芒 committed
4508 4509 4510
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4511
@property (nonatomic, copy) NSString *entityType;
4512
/**
曹云霄's avatar
曹云霄 committed
4513
 * 实体id
4514 4515 4516
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4517
@property (nonatomic, copy) NSString *entityId;
4518
/**
曹云霄's avatar
曹云霄 committed
4519 4520
 * 播放时间
 *
4521
 *
曹云霄's avatar
曹云霄 committed
4522
 */
曹云霄's avatar
曹云霄 committed
4523 4524
@property (nonatomic, copy) NSString *playTime;
@end /* interface TOAttachmentEntity */
4525 4526 4527 4528 4529



/**
 *  @Title: Entity
曹云霄's avatar
曹云霄 committed
4530
 @Description: 公告
4531
 @author onlineGenerator
曹云霄's avatar
曹云霄 committed
4532
 @date 2016-11-09 11:48:16
4533 4534 4535 4536
 @version V1.0
 
 
 */
曹云霄's avatar
曹云霄 committed
4537
@interface TOAfficheEntity : JSONModel
4538
/**
曹云霄's avatar
曹云霄 committed
4539
 * 主键
4540 4541
 *
 *
曹云霄's avatar
曹云霄 committed
4542
 */
4543
@property (nonatomic, copy) NSString *fid;
4544
/**
曹云霄's avatar
曹云霄 committed
4545
 * 创建人名称
4546 4547
 *
 *
曹云霄's avatar
曹云霄 committed
4548
 */
4549
@property (nonatomic, copy) NSString *createName;
4550
/**
曹云霄's avatar
曹云霄 committed
4551
 * 创建日期
4552 4553
 *
 *
曹云霄's avatar
曹云霄 committed
4554
 */
4555
@property (nonatomic, copy) NSString *createDate;
4556
/**
曹云霄's avatar
曹云霄 committed
4557
 * 更新人名称
勾芒's avatar
勾芒 committed
4558 4559
 *
 *
曹云霄's avatar
曹云霄 committed
4560
 */
曹云霄's avatar
曹云霄 committed
4561
@property (nonatomic, copy) NSString *updateName;
4562
/**
曹云霄's avatar
曹云霄 committed
4563
 * 更新日期
4564 4565 4566
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4567
@property (nonatomic, copy) NSString *updateDate;
4568
/**
曹云霄's avatar
曹云霄 committed
4569
 * 标题
4570 4571 4572
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4573
@property (nonatomic, copy) NSString *title;
4574
/**
曹云霄's avatar
曹云霄 committed
4575
 * 内容
4576 4577 4578
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4579
@property (nonatomic, copy) NSString *content;
4580
/**
曹云霄's avatar
曹云霄 committed
4581
 * 优先级
4582 4583 4584
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4585
@property (nonatomic, copy) NSString *priority;
4586
/**
曹云霄's avatar
曹云霄 committed
4587
 * 状态
4588 4589 4590
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4591
@property (nonatomic, copy) NSString *state;
4592
/**
曹云霄's avatar
曹云霄 committed
4593
 * 公告类型
4594 4595 4596
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4597
@property (nonatomic, copy) NSString *afficheType;
4598
/**
曹云霄's avatar
曹云霄 committed
4599
 * 附件
4600 4601 4602
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4603
@property (nonatomic, copy) NSString *attachmentId;
4604
/**
曹云霄's avatar
曹云霄 committed
4605
 * (no documentation provided)
4606 4607 4608
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4609
@property (nonatomic, copy) NSString *departId;
4610
/**
曹云霄's avatar
曹云霄 committed
4611 4612
 * (no documentation provided)
 * @see TOAttachmentEntity
4613 4614
 *
 */
曹云霄's avatar
曹云霄 committed
4615 4616 4617 4618 4619
@property (nonatomic, strong) NSArray<TOAttachmentEntity> *attachmentUrls;
@end /* interface TOAfficheEntity */



4620
/**
曹云霄's avatar
曹云霄 committed
4621
 * (no documentation provided)
4622
 */
曹云霄's avatar
曹云霄 committed
4623
@interface StudyTypeResponse : JSONModel
4624
/**
曹云霄's avatar
曹云霄 committed
4625 4626
 * (no documentation provided)
 * @see TOStudyTypeEntity
4627 4628
 *
 */
曹云霄's avatar
曹云霄 committed
4629 4630
@property (nonatomic, strong) NSArray<TOStudyTypeEntity> *types;
@end /* interface StudyTypeResponse */
勾芒's avatar
勾芒 committed
4631 4632 4633



曹云霄's avatar
曹云霄 committed
4634
/**
曹云霄's avatar
曹云霄 committed
4635 4636 4637
 *  学习任务。
 
 @author thor
曹云霄's avatar
曹云霄 committed
4638 4639 4640
 
 
 */
曹云霄's avatar
曹云霄 committed
4641
@interface RsStudyTask : JSONModel
曹云霄's avatar
曹云霄 committed
4642
/**
曹云霄's avatar
曹云霄 committed
4643
 * 分类名称
曹云霄's avatar
曹云霄 committed
4644 4645 4646
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4647
@property (nonatomic, copy) NSString *categoryName;
4648
/**
曹云霄's avatar
曹云霄 committed
4649 4650
 * 学习任务列表
 * @see TOStudyTaskEntity
4651 4652
 *
 */
曹云霄's avatar
曹云霄 committed
4653 4654
@property (nonatomic, strong) NSArray<TOStudyTaskEntity> *studyTasks;
@end /* interface RsStudyTask */
曹云霄's avatar
曹云霄 committed
4655 4656 4657



勾芒's avatar
勾芒 committed
4658
/**
4659
 *  @author Debenson
4660
 @since 0.1
勾芒's avatar
勾芒 committed
4661 4662
 
 */
4663
@interface DeleteCartRequest : JSONModel
4664
/**
4665 4666
 * 购物车标识列表
 * @see NSString
4667 4668
 *
 */
4669 4670
@property (nonatomic, strong) NSArray<NSString *> *cartIds;
@end /* interface DeleteCartRequest */
4671 4672 4673



4674
/**
曹云霄's avatar
曹云霄 committed
4675 4676 4677 4678
 *  积分详情
 
 @author wolv
 
4679
 
曹云霄's avatar
曹云霄 committed
4680
 */
曹云霄's avatar
曹云霄 committed
4681
@interface RsScoreDetails : JSONModel
4682
/**
曹云霄's avatar
曹云霄 committed
4683
 *
4684
 *
4685
 *
曹云霄's avatar
曹云霄 committed
4686
 */
曹云霄's avatar
曹云霄 committed
4687
@property (nonatomic, assign) double currentScore;
4688
/**
曹云霄's avatar
曹云霄 committed
4689
 *
4690
 *
勾芒's avatar
勾芒 committed
4691 4692
 *
 */
曹云霄's avatar
曹云霄 committed
4693
@property (nonatomic, assign) NSInteger quarterlyRanking;
4694
/**
曹云霄's avatar
曹云霄 committed
4695
 *
4696
 *
4697
 *
曹云霄's avatar
曹云霄 committed
4698
 */
曹云霄's avatar
曹云霄 committed
4699 4700 4701 4702 4703 4704 4705 4706
@property (nonatomic, assign) NSInteger annualRanking;
/**
 * (no documentation provided)
 * @see TOScoreRecordEntity
 *
 */
@property (nonatomic, strong) NSArray<TOScoreRecordEntity> *recoreds;
@end /* interface RsScoreDetails */
勾芒's avatar
勾芒 committed
4707 4708 4709



4710
/**
曹云霄's avatar
曹云霄 committed
4711
 *  促销计算结果。
4712
 
曹云霄's avatar
曹云霄 committed
4713 4714
 @author Debenson
 @since 0.1
4715 4716
 
 */
曹云霄's avatar
曹云霄 committed
4717
@interface RsActionResult : JSONModel
4718
/**
曹云霄's avatar
曹云霄 committed
4719 4720
 * 结果集合,空集合表示没有促销。
 * @see Action
4721 4722
 *
 */
曹云霄's avatar
曹云霄 committed
4723 4724
@property (nonatomic, strong) NSArray<Action> *actions;
@end /* interface RsActionResult */
4725 4726 4727 4728



/**
曹云霄's avatar
曹云霄 committed
4729 4730 4731
 *  兑奖单
 
 @author wolv
4732
 
勾芒's avatar
勾芒 committed
4733 4734
 
 */
曹云霄's avatar
曹云霄 committed
4735
@interface RsPrizeBill : JSONModel
勾芒's avatar
勾芒 committed
4736
/**
4737
 *
勾芒's avatar
勾芒 committed
4738 4739 4740
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4741
@property (nonatomic, strong) TOPrizeBillEntity *bill;
勾芒's avatar
勾芒 committed
4742
/**
4743
 *
曹云霄's avatar
曹云霄 committed
4744
 * @see TOPrizeBillDetailsEntity
勾芒's avatar
勾芒 committed
4745 4746
 *
 */
曹云霄's avatar
曹云霄 committed
4747 4748
@property (nonatomic, strong) NSArray<TOPrizeBillDetailsEntity> *details;
@end /* interface RsPrizeBill */
4749 4750 4751



4752
/**
曹云霄's avatar
曹云霄 committed
4753 4754 4755
 *  订单筛选条件。
 
 @author Debenson
4756 4757 4758
 @since 0.1
 
 */
曹云霄's avatar
曹云霄 committed
4759
@interface OrderFilter : JSONModel
4760
/**
曹云霄's avatar
曹云霄 committed
4761
 * 经销商代码
4762
 *
4763 4764
 *
 */
曹云霄's avatar
曹云霄 committed
4765
@property (nonatomic, copy) NSString *resellerCodeEquals;
4766
/**
曹云霄's avatar
曹云霄 committed
4767
 *
4768 4769 4770
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4771
@property (nonatomic, copy) NSString *orderStateEquals;
4772
/**
曹云霄's avatar
曹云霄 committed
4773 4774
 * 消费者名称或手机号等于
 *
4775 4776
 *
 */
曹云霄's avatar
曹云霄 committed
4777
@property (nonatomic, copy) NSString *consumerNameOrMobileEquals;
4778
/**
曹云霄's avatar
曹云霄 committed
4779
 * 客户标识等于
4780 4781 4782
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4783
@property (nonatomic, copy) NSString *consumerIdEquals;
4784
/**
曹云霄's avatar
曹云霄 committed
4785
 * 分页数据
4786 4787 4788
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4789 4790
@property (nonatomic, strong) DataPage *dp;
@end /* interface OrderFilter */
4791 4792 4793 4794 4795 4796 4797 4798 4799 4800



/**
 *  查询京东E卡对象
 
 @author nevermore
 @since 0.1
 
 */
曹云霄's avatar
曹云霄 committed
4801
@interface Draw : JSONModel
勾芒's avatar
勾芒 committed
4802 4803
/**
 * (no documentation provided)
4804
 *
勾芒's avatar
勾芒 committed
4805 4806
 *
 */
曹云霄's avatar
曹云霄 committed
4807
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
4808
/**
勾芒's avatar
勾芒 committed
4809
 * (no documentation provided)
勾芒's avatar
勾芒 committed
4810
 *
4811 4812
 *
 */
曹云霄's avatar
曹云霄 committed
4813
@property (nonatomic, copy) NSString *lotteryId;
勾芒's avatar
勾芒 committed
4814 4815 4816 4817 4818
/**
 * (no documentation provided)
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4819
@property (nonatomic, copy) NSString *drawDate;
4820 4821
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
4822
 *
4823 4824
 *
 */
曹云霄's avatar
曹云霄 committed
4825
@property (nonatomic, copy) NSString *winnerId;
勾芒's avatar
勾芒 committed
4826
/**
曹云霄's avatar
曹云霄 committed
4827
 * (no documentation provided)
勾芒's avatar
勾芒 committed
4828 4829 4830
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4831
@property (nonatomic, copy) NSString *awardId;
勾芒's avatar
勾芒 committed
4832
/**
曹云霄's avatar
曹云霄 committed
4833
 * (no documentation provided)
勾芒's avatar
勾芒 committed
4834 4835 4836
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4837
@property (nonatomic, copy) NSString *awardDescription;
勾芒's avatar
勾芒 committed
4838
/**
曹云霄's avatar
曹云霄 committed
4839
 * (no documentation provided)
勾芒's avatar
勾芒 committed
4840 4841 4842
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4843
@property (nonatomic, copy) NSString *orderNumber;
勾芒's avatar
勾芒 committed
4844
/**
曹云霄's avatar
曹云霄 committed
4845
 * (no documentation provided)
勾芒's avatar
勾芒 committed
4846 4847 4848
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4849 4850 4851 4852 4853
@property (nonatomic, copy) NSString *state;
@end /* interface Draw */



勾芒's avatar
勾芒 committed
4854
/**
曹云霄's avatar
曹云霄 committed
4855 4856 4857 4858 4859 4860 4861 4862
 *  @author Administrator
 @since 0.1
 
 */
@interface HotFilter : JSONModel
/**
 * (no documentation provided)
 * @see DataDict
勾芒's avatar
勾芒 committed
4863 4864
 *
 */
曹云霄's avatar
曹云霄 committed
4865 4866 4867 4868 4869
@property (nonatomic, strong) NSArray<DataDict> *list;
@end /* interface HotFilter */



勾芒's avatar
勾芒 committed
4870
/**
曹云霄's avatar
曹云霄 committed
4871 4872 4873 4874 4875 4876 4877
 *  @author Debenson
 @since 0.1
 
 */
@interface GoodsCategory : JSONModel
/**
 * 分类id
勾芒's avatar
勾芒 committed
4878 4879 4880
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4881
@property (nonatomic, copy) NSString *fid;
勾芒's avatar
勾芒 committed
4882
/**
曹云霄's avatar
曹云霄 committed
4883
 * 分类名称
勾芒's avatar
勾芒 committed
4884 4885 4886
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4887
@property (nonatomic, copy) NSString *name;
4888
/**
曹云霄's avatar
曹云霄 committed
4889 4890
 * 下级分类列表
 * @see GoodsCategory
4891
 *
曹云霄's avatar
曹云霄 committed
4892
 */
曹云霄's avatar
曹云霄 committed
4893 4894
@property (nonatomic, strong) NSArray<GoodsCategory> *children;
@end /* interface GoodsCategory */
4895 4896 4897 4898



/**
曹云霄's avatar
曹云霄 committed
4899
 *  @author MHk
4900 4901
 @since 0.1
 
曹云霄's avatar
曹云霄 committed
4902
 */
曹云霄's avatar
曹云霄 committed
4903
@interface RsEmployeeRequest : JSONModel
4904
/**
勾芒's avatar
勾芒 committed
4905
 * (no documentation provided)
4906 4907
 *
 *
曹云霄's avatar
曹云霄 committed
4908
 */
曹云霄's avatar
曹云霄 committed
4909 4910
@property (nonatomic, strong) TOEmployee *employee;
@end /* interface RsEmployeeRequest */
曹云霄's avatar
曹云霄 committed
4911

4912

曹云霄's avatar
曹云霄 committed
4913 4914

/**
曹云霄's avatar
曹云霄 committed
4915
 *  修改密码请求。
曹云霄's avatar
曹云霄 committed
4916 4917 4918
 
 @author Debenson
 @since 0.1
4919
 
曹云霄's avatar
曹云霄 committed
4920
 */
曹云霄's avatar
曹云霄 committed
4921
@interface ModifyPasswordRequest : JSONModel
4922
/**
曹云霄's avatar
曹云霄 committed
4923
 * 员工标识。
4924 4925
 *
 *
曹云霄's avatar
曹云霄 committed
4926
 */
曹云霄's avatar
曹云霄 committed
4927
@property (nonatomic, copy) NSString *employeeId;
4928
/**
曹云霄's avatar
曹云霄 committed
4929
 * 原密码。
4930 4931 4932
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4933
@property (nonatomic, copy) NSString *oldPassword;
4934
/**
曹云霄's avatar
曹云霄 committed
4935
 * 新密码
4936 4937
 *
 *
曹云霄's avatar
曹云霄 committed
4938 4939
 */
@property (nonatomic, copy) NSString *fnewPassword;
曹云霄's avatar
曹云霄 committed
4940
@end /* interface ModifyPasswordRequest */
曹云霄's avatar
曹云霄 committed
4941 4942


4943

曹云霄's avatar
曹云霄 committed
4944
/**
曹云霄's avatar
曹云霄 committed
4945
 *  经销商用户登录信息。
曹云霄's avatar
曹云霄 committed
4946 4947 4948
 
 @author Debenson
 @since 0.1
4949
 
曹云霄's avatar
曹云霄 committed
4950
 */
曹云霄's avatar
曹云霄 committed
4951
@interface LoginInfo : JSONModel
4952
/**
曹云霄's avatar
曹云霄 committed
4953
 * 用户名
4954 4955 4956
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4957
@property (nonatomic, copy) NSString *username;
4958
/**
曹云霄's avatar
曹云霄 committed
4959
 * 密码
4960 4961 4962
 *
 *
 */
曹云霄's avatar
曹云霄 committed
4963 4964
@property (nonatomic, copy) NSString *password;
@end /* interface LoginInfo */
曹云霄's avatar
曹云霄 committed
4965

4966

曹云霄's avatar
曹云霄 committed
4967 4968

/**
4969 4970 4971
 *  客户查询条件。
 
 @author Debenson
曹云霄's avatar
曹云霄 committed
4972
 @since 0.1
4973
 
曹云霄's avatar
曹云霄 committed
4974 4975
 */
@interface ConsumerQueryCondition : JSONModel
勾芒's avatar
勾芒 committed
4976 4977 4978 4979 4980 4981
/**
 * 经销商代码等于
 *
 *
 */
@property (nonatomic, copy) NSString *resellerCodeEquals;
4982
/**
曹云霄's avatar
曹云霄 committed
4983
 * 名称等于
4984 4985
 *
 *
曹云霄's avatar
曹云霄 committed
4986 4987
 */
@property (nonatomic, copy) NSString *nameEquals;
4988
/**
曹云霄's avatar
曹云霄 committed
4989
 * 手机号等于
4990 4991
 *
 *
曹云霄's avatar
曹云霄 committed
4992 4993
 */
@property (nonatomic, copy) NSString *mobileEquals;
勾芒's avatar
勾芒 committed
4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005
/**
 * 创建时间起始于,格式: yyyy-MM-dd HH:mm:ss
 *
 *
 */
@property (nonatomic, copy) NSString *createTimeBegin;
/**
 * 创建时间截止于,格式: yyyy-MM-dd HH:mm:ss
 *
 *
 */
@property (nonatomic, copy) NSString *createTimeEnd;
5006
/**
曹云霄's avatar
曹云霄 committed
5007
 * 分布查询条件, 可空
5008 5009
 *
 *
曹云霄's avatar
曹云霄 committed
5010 5011 5012 5013 5014
 */
@property (nonatomic, strong) DataPage *page;
@end /* interface ConsumerQueryCondition */


5015

曹云霄's avatar
曹云霄 committed
5016 5017 5018 5019 5020
/**
 *  异常代码。
 
 @author Debenson
 @since 0.1
5021
 
曹云霄's avatar
曹云霄 committed
5022 5023
 */
@interface ExceptionCode : JSONModel
5024
/**
曹云霄's avatar
曹云霄 committed
5025
 * 异常代码
5026 5027
 *
 *
曹云霄's avatar
曹云霄 committed
5028
 */
5029
@property (nonatomic, assign) NSInteger code;
5030
/**
曹云霄's avatar
曹云霄 committed
5031
 * 异常信息
5032 5033
 *
 *
曹云霄's avatar
曹云霄 committed
5034 5035 5036 5037
 */
@property (nonatomic, copy) NSString *message;
@end /* interface ExceptionCode */

5038

曹云霄's avatar
曹云霄 committed
5039 5040

/**
曹云霄's avatar
曹云霄 committed
5041
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5042
 */
曹云霄's avatar
曹云霄 committed
5043
@interface EarningsResponse : JSONModel
5044
/**
曹云霄's avatar
曹云霄 committed
5045
 * (no documentation provided)
5046 5047
 *
 *
曹云霄's avatar
曹云霄 committed
5048
 */
曹云霄's avatar
曹云霄 committed
5049
@property (nonatomic, strong) NSNumber *accountTotal;
5050
/**
曹云霄's avatar
曹云霄 committed
5051
 * (no documentation provided)
5052 5053
 *
 *
曹云霄's avatar
曹云霄 committed
5054
 */
曹云霄's avatar
曹云霄 committed
5055
@property (nonatomic, strong) NSNumber *yesterdayEarnings;
5056
/**
曹云霄's avatar
曹云霄 committed
5057
 * (no documentation provided)
5058 5059
 *
 *
曹云霄's avatar
曹云霄 committed
5060
 */
曹云霄's avatar
曹云霄 committed
5061
@property (nonatomic, strong) NSNumber *historyEarning;
曹云霄's avatar
曹云霄 committed
5062 5063 5064 5065 5066 5067
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) NSNumber *applytotal;
5068
/**
曹云霄's avatar
曹云霄 committed
5069 5070 5071
 * (no documentation provided)
 *
 *
曹云霄's avatar
曹云霄 committed
5072
 */
曹云霄's avatar
曹云霄 committed
5073
@property (nonatomic, strong) NSNumber *redPackageAccountTotal;
5074
/**
曹云霄's avatar
曹云霄 committed
5075
 * (no documentation provided)
5076
 *
曹云霄's avatar
曹云霄 committed
5077
 *
曹云霄's avatar
曹云霄 committed
5078
 */
曹云霄's avatar
曹云霄 committed
5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104
@property (nonatomic, strong) NSNumber *redPackageYesterdayEarnings;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) NSNumber *redPackageHistoryEarning;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) NSNumber *redPackageApplytotal;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, assign) BOOL isUsable;
/**
 * (no documentation provided)
 * @see TOGuideBankcardEntity
 *
 */
@property (nonatomic, strong) NSArray<TOGuideBankcardEntity> *bankCards;
@end /* interface EarningsResponse */
曹云霄's avatar
曹云霄 committed
5105 5106 5107 5108



/**
曹云霄's avatar
曹云霄 committed
5109
 *  公告筛选条件
曹云霄's avatar
曹云霄 committed
5110
 
曹云霄's avatar
曹云霄 committed
5111 5112 5113
 @author thor
 @date 2016年11月16日 上午11:53:21
 @version 0.1
5114
 
曹云霄's avatar
曹云霄 committed
5115
 */
曹云霄's avatar
曹云霄 committed
5116
@interface AfficheCondition : JSONModel
5117
/**
曹云霄's avatar
曹云霄 committed
5118
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5119
 *
5120
 *
曹云霄's avatar
曹云霄 committed
5121
 */
曹云霄's avatar
曹云霄 committed
5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153
@property (nonatomic, strong) DataPage *page;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *userIdEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, assign) NSInteger dayCountEquals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *afficheTypeEuals;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *order;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *sort;
@end /* interface AfficheCondition */
曹云霄's avatar
曹云霄 committed
5154 5155 5156



曹云霄's avatar
曹云霄 committed
5157
/**
曹云霄's avatar
曹云霄 committed
5158
 *  @author NuoSa
曹云霄's avatar
曹云霄 committed
5159 5160 5161 5162
 
 @since 0.1
 
 */
曹云霄's avatar
曹云霄 committed
5163
@interface GoodsResponse : PageRows
曹云霄's avatar
曹云霄 committed
5164
/**
曹云霄's avatar
曹云霄 committed
5165 5166
 * 商品列表
 * @see TOGoodsEntity
曹云霄's avatar
曹云霄 committed
5167 5168
 *
 */
曹云霄's avatar
曹云霄 committed
5169 5170
@property (nonatomic, strong) NSArray<TOGoodsEntity> *goodsEntity;
@end /* interface GoodsResponse */
曹云霄's avatar
曹云霄 committed
5171 5172 5173



5174
/**
5175
 *  系统用户父类表
曹云霄's avatar
曹云霄 committed
5176 5177
 @author  张代浩
 
曹云霄's avatar
曹云霄 committed
5178
 */
5179
@interface TSBaseUser : IdEntity
5180
/**
曹云霄's avatar
曹云霄 committed
5181
 * (no documentation provided)
5182 5183
 *
 *
曹云霄's avatar
曹云霄 committed
5184
 */
5185
@property (nonatomic, copy) NSString *departid;
5186
/**
曹云霄's avatar
曹云霄 committed
5187
 * (no documentation provided)
5188 5189
 *
 *
曹云霄's avatar
曹云霄 committed
5190
 */
5191
@property (nonatomic, strong) NSData *signature;
5192
/**
曹云霄's avatar
曹云霄 committed
5193
 * (no documentation provided)
5194
 *
5195
 *
曹云霄's avatar
曹云霄 committed
5196
 */
5197
@property (nonatomic, copy) NSString *browser;
5198
/**
曹云霄's avatar
曹云霄 committed
5199
 * (no documentation provided)
5200
 *
5201
 *
曹云霄's avatar
曹云霄 committed
5202
 */
5203
@property (nonatomic, copy) NSString *userKey;
5204
/**
曹云霄's avatar
曹云霄 committed
5205
 * (no documentation provided)
5206 5207
 *
 *
曹云霄's avatar
曹云霄 committed
5208
 */
5209
@property (nonatomic, assign) short status;
5210
/**
曹云霄's avatar
曹云霄 committed
5211
 * (no documentation provided)
5212 5213
 *
 *
曹云霄's avatar
曹云霄 committed
5214
 */
5215
@property (nonatomic, assign) short activitiSync;
5216
/**
曹云霄's avatar
曹云霄 committed
5217
 * (no documentation provided)
5218 5219
 *
 *
曹云霄's avatar
曹云霄 committed
5220
 */
5221
@property (nonatomic, copy) NSString *password;
5222
/**
曹云霄's avatar
曹云霄 committed
5223
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5224
 *
5225
 *
曹云霄's avatar
曹云霄 committed
5226
 */
5227
@property (nonatomic, copy) NSString *userName;
5228
/**
曹云霄's avatar
曹云霄 committed
5229
 * (no documentation provided)
5230 5231
 *
 *
曹云霄's avatar
曹云霄 committed
5232
 */
5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246
@property (nonatomic, copy) NSString *realName;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TSDepart *currentDepart;
/**
 * (no documentation provided)
 * @see TSUserOrg
 *
 */
@property (nonatomic, strong) NSArray<TSUserOrg> *userOrgList;
@end /* interface TSBaseUser */
5247 5248 5249 5250



/**
5251
 *  部门机构表
5252 5253 5254
 @author  张代浩
 
 */
5255
@interface TSDepart : IdEntity
5256
/**
曹云霄's avatar
曹云霄 committed
5257
 * (no documentation provided)
5258 5259
 *
 *
曹云霄's avatar
曹云霄 committed
5260
 */
5261
@property (nonatomic, strong) TSDepart *TSPDepart;
5262
/**
曹云霄's avatar
曹云霄 committed
5263
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5264
 *
5265
 *
曹云霄's avatar
曹云霄 committed
5266
 */
5267
@property (nonatomic, copy) NSString *departname;
5268
/**
曹云霄's avatar
曹云霄 committed
5269
 * (no documentation provided)
5270 5271
 *
 *
曹云霄's avatar
曹云霄 committed
5272
 */
5273
@property (nonatomic, copy) NSString *fdescription;
5274
/**
曹云霄's avatar
曹云霄 committed
5275
 * (no documentation provided)
5276
 * @see TSDepart
5277
 *
曹云霄's avatar
曹云霄 committed
5278
 */
5279
@property (nonatomic, strong) NSArray<TSDepart> *TSDeparts;
5280
/**
曹云霄's avatar
曹云霄 committed
5281
 * (no documentation provided)
5282 5283
 *
 *
曹云霄's avatar
曹云霄 committed
5284
 */
5285
@property (nonatomic, copy) NSString *orgCode;
5286
/**
曹云霄's avatar
曹云霄 committed
5287
 * (no documentation provided)
5288 5289
 *
 *
曹云霄's avatar
曹云霄 committed
5290
 */
5291
@property (nonatomic, copy) NSString *orgType;
5292
/**
曹云霄's avatar
曹云霄 committed
5293
 * (no documentation provided)
5294 5295
 *
 *
曹云霄's avatar
曹云霄 committed
5296
 */
5297
@property (nonatomic, copy) NSString *mobile;
曹云霄's avatar
曹云霄 committed
5298 5299 5300 5301 5302
/**
 * (no documentation provided)
 *
 *
 */
5303
@property (nonatomic, copy) NSString *fax;
曹云霄's avatar
曹云霄 committed
5304 5305
/**
 * (no documentation provided)
5306
 *
曹云霄's avatar
曹云霄 committed
5307 5308
 *
 */
5309 5310 5311 5312 5313
@property (nonatomic, copy) NSString *address;
@end /* interface TSDepart */



曹云霄's avatar
曹云霄 committed
5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331
/**
 *  查询京东E卡分页
 
 @author nevermore
 @since 0.1
 
 */
@interface RsJingDongECardResponse : PageRows
/**
 * (no documentation provided)
 * @see GroupByOrderNumber
 *
 */
@property (nonatomic, strong) NSArray<GroupByOrderNumber> *list;
@end /* interface RsJingDongECardResponse */



5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356
/**
 *  用户-组织机构 实体
 <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 */


5357

曹云霄's avatar
曹云霄 committed
5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381
/**
 *  查询抽奖结果分页
 
 @author nevermore
 @since 0.1
 
 */
@interface RsAwardDraw : PageRows
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TODrawEntity *draw;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, strong) TOAwardEntity *award;
@end /* interface RsAwardDraw */



曹云霄's avatar
曹云霄 committed
5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399
/**
 *  查询抽奖结果分页
 
 @author nevermore
 @since 0.1
 
 */
@interface RsLotteryResponse : PageRows
/**
 * (no documentation provided)
 * @see RsAwardDraw
 *
 */
@property (nonatomic, strong) NSArray<RsAwardDraw> *list;
@end /* interface RsLotteryResponse */



曹云霄's avatar
曹云霄 committed
5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413
/**
 * (no documentation provided)
 */
@interface PassLevelResponse : PageRows
/**
 * 闯关列表
 * @see TOPassLevelEntity
 *
 */
@property (nonatomic, strong) NSArray<TOPassLevelEntity> *passLevelEntity;
@end /* interface PassLevelResponse */



5414
/**
5415 5416 5417
 *  购物车返回对象
 
 @author Flash
5418 5419 5420
 @since 0.1
 
 */
5421
@interface ShopCartResponse : PageRows
5422 5423
/**
 * (no documentation provided)
5424
 * @see TOShopcartEntity
5425 5426
 *
 */
5427 5428
@property (nonatomic, strong) NSArray<TOShopcartEntity> *shopcart;
@end /* interface ShopCartResponse */
5429 5430 5431



5432
/**
5433
 *  @author Administrator
5434 5435 5436
 @since 0.1
 
 */
5437
@interface SceneResponse : PageRows
5438 5439
/**
 * (no documentation provided)
5440
 * @see TOSceneEntity
5441 5442
 *
 */
5443 5444
@property (nonatomic, strong) NSArray<TOSceneEntity> *list;
@end /* interface SceneResponse */
5445 5446 5447



曹云霄's avatar
曹云霄 committed
5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465
/**
 *  奖品查询结果
 
 @author wolv
 
 
 */
@interface PrizeResponse : PageRows
/**
 *
 * @see TOPrizeEntity
 *
 */
@property (nonatomic, strong) NSArray<TOPrizeEntity> *prizes;
@end /* interface PrizeResponse */



5466
/**
5467
 *  订单返回对象
5468
 
5469
 @author wsx
5470 5471 5472
 @since 0.1
 
 */
5473
@interface OrderResponse : PageRows
5474 5475
/**
 * (no documentation provided)
5476
 * @see OrderBill
5477 5478
 *
 */
5479 5480
@property (nonatomic, strong) NSArray<OrderBill> *orderBillList;
@end /* interface OrderResponse */
5481 5482


曹云霄's avatar
曹云霄 committed
5483

5484
/**
曹云霄's avatar
曹云霄 committed
5485
 *  查询京东E卡分页
5486 5487 5488 5489 5490
 
 @author nevermore
 @since 0.1
 
 */
曹云霄's avatar
曹云霄 committed
5491
@interface RsSimpleJingDongECardResponse : PageRows
5492 5493
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5494
 * @see TOJingdongEcardEntity
5495 5496
 *
 */
曹云霄's avatar
曹云霄 committed
5497 5498
@property (nonatomic, strong) NSArray<TOJingdongEcardEntity> *list;
@end /* interface RsSimpleJingDongECardResponse */
5499 5500 5501



曹云霄's avatar
曹云霄 committed
5502
/**
曹云霄's avatar
曹云霄 committed
5503
 *  流水明细分页查询结果
曹云霄's avatar
曹云霄 committed
5504
 
曹云霄's avatar
曹云霄 committed
5505
 @author nevermore
曹云霄's avatar
曹云霄 committed
5506
 @since 0.1
5507
 
曹云霄's avatar
曹云霄 committed
5508
 */
曹云霄's avatar
曹云霄 committed
5509
@interface RsCommissionResponse : PageRows
5510
/**
曹云霄's avatar
曹云霄 committed
5511 5512
 * (no documentation provided)
 * @see TOCommissionHistEntity
5513
 *
曹云霄's avatar
曹云霄 committed
5514
 */
曹云霄's avatar
曹云霄 committed
5515 5516
@property (nonatomic, strong) NSArray<TOCommissionHistEntity> *list;
@end /* interface RsCommissionResponse */
曹云霄's avatar
曹云霄 committed
5517

5518

曹云霄's avatar
曹云霄 committed
5519 5520 5521 5522 5523 5524

/**
 *  客户分页查询结果。
 
 @author Debenson
 @since 0.1
5525
 
曹云霄's avatar
曹云霄 committed
5526 5527
 */
@interface ConsumerPageResult : PageRows
5528
/**
曹云霄's avatar
曹云霄 committed
5529 5530
 * 客户列表
 * @see TOConsumerEntity
5531
 *
曹云霄's avatar
曹云霄 committed
5532 5533 5534 5535 5536
 */
@property (nonatomic, strong) NSArray<TOConsumerEntity> *results;
@end /* interface ConsumerPageResult */


5537

曹云霄's avatar
曹云霄 committed
5538
/**
曹云霄's avatar
曹云霄 committed
5539
 *  查询提现进度分页
曹云霄's avatar
曹云霄 committed
5540 5541
 
 @author nevermore
曹云霄's avatar
曹云霄 committed
5542 5543 5544
 @since 0.1
 
 */
曹云霄's avatar
曹云霄 committed
5545
@interface RsApplyBillResponse : PageRows
曹云霄's avatar
曹云霄 committed
5546 5547
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5548
 * @see TOApplyBillEntity
曹云霄's avatar
曹云霄 committed
5549 5550
 *
 */
曹云霄's avatar
曹云霄 committed
5551 5552
@property (nonatomic, strong) NSArray<TOApplyBillEntity> *list;
@end /* interface RsApplyBillResponse */
曹云霄's avatar
曹云霄 committed
5553 5554 5555 5556



/**
曹云霄's avatar
曹云霄 committed
5557
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5558
 */
曹云霄's avatar
曹云霄 committed
5559
@interface AfficheResponse : PageRows
曹云霄's avatar
曹云霄 committed
5560 5561
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5562
 * @see TOAfficheEntity
曹云霄's avatar
曹云霄 committed
5563 5564
 *
 */
曹云霄's avatar
曹云霄 committed
5565 5566
@property (nonatomic, strong) NSArray<TOAfficheEntity> *afficheEntity;
@end /* interface AfficheResponse */
曹云霄's avatar
曹云霄 committed
5567 5568 5569



曹云霄's avatar
曹云霄 committed
5570 5571
/**
 *  系统用户表
勾芒's avatar
勾芒 committed
5572 5573
 
 @author 张代浩
5574
 
曹云霄's avatar
曹云霄 committed
5575 5576
 */
@interface TSUser : TSBaseUser
5577
/**
曹云霄's avatar
曹云霄 committed
5578
 * (no documentation provided)
5579 5580
 *
 *
曹云霄's avatar
曹云霄 committed
5581 5582
 */
@property (nonatomic, copy) NSString *signatureFile;
5583
/**
曹云霄's avatar
曹云霄 committed
5584
 * (no documentation provided)
5585 5586
 *
 *
曹云霄's avatar
曹云霄 committed
5587 5588
 */
@property (nonatomic, copy) NSString *mobilePhone;
5589
/**
曹云霄's avatar
曹云霄 committed
5590
 * (no documentation provided)
5591 5592
 *
 *
曹云霄's avatar
曹云霄 committed
5593 5594
 */
@property (nonatomic, copy) NSString *officePhone;
5595
/**
曹云霄's avatar
曹云霄 committed
5596
 * (no documentation provided)
5597 5598
 *
 *
曹云霄's avatar
曹云霄 committed
5599 5600
 */
@property (nonatomic, copy) NSString *email;
5601
/**
曹云霄's avatar
曹云霄 committed
5602
 * 方法: 取得java.util.Date
5603 5604
 *
 *
曹云霄's avatar
曹云霄 committed
5605
 */
勾芒's avatar
勾芒 committed
5606
@property (nonatomic, copy) NSString *createDate;
5607
/**
曹云霄's avatar
曹云霄 committed
5608
 * 方法: 取得java.lang.String
5609 5610
 *
 *
曹云霄's avatar
曹云霄 committed
5611 5612
 */
@property (nonatomic, copy) NSString *createBy;
5613
/**
曹云霄's avatar
曹云霄 committed
5614
 * 方法: 取得java.lang.String
5615 5616
 *
 *
曹云霄's avatar
曹云霄 committed
5617 5618
 */
@property (nonatomic, copy) NSString *createName;
5619
/**
曹云霄's avatar
曹云霄 committed
5620
 * 方法: 取得java.util.Date
5621 5622
 *
 *
曹云霄's avatar
曹云霄 committed
5623
 */
勾芒's avatar
勾芒 committed
5624
@property (nonatomic, copy) NSString *updateDate;
5625
/**
曹云霄's avatar
曹云霄 committed
5626
 * 方法: 取得java.lang.String
5627 5628
 *
 *
曹云霄's avatar
曹云霄 committed
5629 5630
 */
@property (nonatomic, copy) NSString *updateBy;
5631
/**
曹云霄's avatar
曹云霄 committed
5632
 * 方法: 取得java.lang.String
5633 5634
 *
 *
曹云霄's avatar
曹云霄 committed
5635 5636
 */
@property (nonatomic, copy) NSString *updateName;
勾芒's avatar
勾芒 committed
5637 5638 5639 5640 5641 5642
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *position;
曹云霄's avatar
曹云霄 committed
5643 5644
@end /* interface TSUser */

5645

曹云霄's avatar
曹云霄 committed
5646 5647 5648 5649 5650 5651

/**
 *  经销商员工。
 
 @author Debenson
 @since 0.1
5652
 
曹云霄's avatar
曹云霄 committed
5653 5654
 */
@interface TOEmployee : TSUser
5655
/**
曹云霄's avatar
曹云霄 committed
5656
 * 职位编码列表, (多个职位编码用逗号分隔,非必填)
5657 5658
 *
 *
曹云霄's avatar
曹云霄 committed
5659 5660
 */
@property (nonatomic, copy) NSString *positions;
勾芒's avatar
勾芒 committed
5661 5662 5663 5664 5665 5666
/**
 * 个人头像
 *
 *
 */
@property (nonatomic, copy) NSString *picture;
5667 5668
/**
 * (no documentation provided)
曹云霄's avatar
曹云霄 committed
5669 5670
 * 
 * 
5671 5672
 */
@property (nonatomic, copy) NSString *positionsName;
曹云霄's avatar
曹云霄 committed
5673 5674 5675
@end /* interface TOEmployee */