car_objc_json_client.h 43.4 KB
Newer Older
1 2 3 4 5 6 7

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


/**
 *  排序方向。
Sandy's avatar
Sandy committed
8
 *
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *  @author Debenson
 *  @since 0.0.1
 */
/**
 * 升序
 */
extern NSString * const QUERYORDERDIRECTION_ASC;
/**
 * 降序
 */
extern NSString * const QUERYORDERDIRECTION_DESC;




@class QueryResultPaging;
25 26 27 28
@class QueryOrder;
@class ExceptionCode;
@class RsResponse;
@class LoginResult;
29
@class ModifyPasswordRequest;
Sandy's avatar
Sandy committed
30
@class CheckOrderRequest;
Sandy's avatar
Sandy committed
31
@class ResetPasswordRequest;
32
@class CheckProductOrderRequest;
Sandy's avatar
Sandy committed
33
@class TradeStatisticsResult;
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
@class StationUserAcctEntity;
@class TOAppversionEntity;
@class DrawCashBillEntity;
@class MerchantProductEntity;
@class ProductEntity;
@class OilGunEntity;
@class StationGasItemEntity;
@class OtherTicketEntity;
@class IdEntity;
@class ProductOrderEntity;
@class OrderEntity;
@class StationUserAcctHisEntity;
@class CheckTicketRequest;
@class MerchantLoginResult;
@class LoginRequest;
@class RsQueryResult;
@class QueryDefinition;
@class ProductOrderQueryDefintion;
Sandy's avatar
Sandy committed
52
@class TSBaseUser;
Sandy's avatar
Sandy committed
53
@class TSDepart;
54
@class ProductOrderQueryResult;
Sandy's avatar
Sandy committed
55
@class TSUserOrg;
56
@class OrderQueryResult;
Sandy's avatar
Sandy committed
57
@class WithdrawQueryDefintion;
58 59
@class OrderQueryDefintion;
@class WithdrawQueryResult;
60 61 62
@class AccountHistoryQueryResult;
@class AccountHistoryQueryDefintion;
@class StationEntity;
63 64
@class TSUser;
@class MerchantEntity;
65
@class StationUserEntity;
66
@class MerchantUserEntity;
Sandy's avatar
Sandy committed
67

68
@protocol QueryResultPaging @end
69 70 71 72
@protocol QueryOrder @end
@protocol ExceptionCode @end
@protocol RsResponse @end
@protocol LoginResult @end
73
@protocol ModifyPasswordRequest @end
Sandy's avatar
Sandy committed
74
@protocol CheckOrderRequest @end
Sandy's avatar
Sandy committed
75
@protocol ResetPasswordRequest @end
76
@protocol CheckProductOrderRequest @end
Sandy's avatar
Sandy committed
77
@protocol TradeStatisticsResult @end
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
@protocol StationUserAcctEntity @end
@protocol TOAppversionEntity @end
@protocol DrawCashBillEntity @end
@protocol MerchantProductEntity @end
@protocol ProductEntity @end
@protocol OilGunEntity @end
@protocol StationGasItemEntity @end
@protocol OtherTicketEntity @end
@protocol IdEntity @end
@protocol ProductOrderEntity @end
@protocol OrderEntity @end
@protocol StationUserAcctHisEntity @end
@protocol CheckTicketRequest @end
@protocol MerchantLoginResult @end
@protocol LoginRequest @end
@protocol RsQueryResult @end
@protocol QueryDefinition @end
@protocol ProductOrderQueryDefintion @end
Sandy's avatar
Sandy committed
96
@protocol TSBaseUser @end
Sandy's avatar
Sandy committed
97
@protocol TSDepart @end
98
@protocol ProductOrderQueryResult @end
Sandy's avatar
Sandy committed
99
@protocol TSUserOrg @end
100
@protocol OrderQueryResult @end
Sandy's avatar
Sandy committed
101
@protocol WithdrawQueryDefintion @end
102 103
@protocol OrderQueryDefintion @end
@protocol WithdrawQueryResult @end
104 105 106
@protocol AccountHistoryQueryResult @end
@protocol AccountHistoryQueryDefintion @end
@protocol StationEntity @end
107 108
@protocol TSUser @end
@protocol MerchantEntity @end
109
@protocol StationUserEntity @end
110
@protocol MerchantUserEntity @end
111

Sandy's avatar
Sandy committed
112 113 114 115 116 117 118

/**
 *  分页数据。
 
 @author Debenson
 @since 0.0.1
 
119 120
 */
@interface QueryResultPaging : JSONModel
Sandy's avatar
Sandy committed
121
/**
122
 * 当前页数,起始于0
Sandy's avatar
Sandy committed
123 124
 *
 *
125 126
 */
@property (nonatomic, assign) NSInteger page;
Sandy's avatar
Sandy committed
127
/**
128
 * 每页记录数,传0表示查询所有记录
Sandy's avatar
Sandy committed
129 130
 *
 *
131 132
 */
@property (nonatomic, assign) NSInteger pageSize;
Sandy's avatar
Sandy committed
133
/**
134
 * 查询结果总页数
Sandy's avatar
Sandy committed
135 136
 *
 *
137 138
 */
@property (nonatomic, assign) NSInteger pageCount;
Sandy's avatar
Sandy committed
139
/**
140
 * 查询结果总记录数
Sandy's avatar
Sandy committed
141 142
 *
 *
143 144 145 146 147 148 149
 */
@property (nonatomic, assign) long long recordCount;
@end /* interface QueryResultPaging */



/**
150
 *  查询排序条件。
151 152
 
 @author Debenson
153
 @since 0.0.1
Sandy's avatar
Sandy committed
154
 
155
 */
156
@interface QueryOrder : JSONModel
Sandy's avatar
Sandy committed
157
/**
158
 * 字段名称
Sandy's avatar
Sandy committed
159 160
 *
 *
161
 */
162
@property (nonatomic, copy) NSString *field;
Sandy's avatar
Sandy committed
163
/**
164
 * 排序方向
Sandy's avatar
Sandy committed
165
 *
166
 * 取值: QUERYORDERDIRECTION_ASC, QUERYORDERDIRECTION_DESC,
Sandy's avatar
Sandy committed
167
 */
168 169
@property (nonatomic, copy) NSString *direction;
@end /* interface QueryOrder */
170 171 172 173



/**
174
 *  异常代码。
175 176
 
 @author Debenson
177
 @since 0.1
Sandy's avatar
Sandy committed
178
 
179
 */
180
@interface ExceptionCode : JSONModel
Sandy's avatar
Sandy committed
181
/**
182
 * 异常代码
Sandy's avatar
Sandy committed
183 184
 *
 *
185
 */
186
@property (nonatomic, assign) NSInteger code;
Sandy's avatar
Sandy committed
187
/**
188
 * 异常信息
Sandy's avatar
Sandy committed
189 190
 *
 *
191
 */
192 193 194 195 196
@property (nonatomic, copy) NSString *message;
@end /* interface ExceptionCode */



Sandy's avatar
Sandy committed
197
/**
198 199 200 201 202 203 204 205 206
 *  Restful Service response base
 
 @author Debenson
 @since 0.1
 
 */
@interface RsResponse : JSONModel
/**
 * 0:正常, 非0异常。
Sandy's avatar
Sandy committed
207 208
 *
 *
209
 */
210
@property (nonatomic, assign) long long code;
Sandy's avatar
Sandy committed
211
/**
212
 * 异常描述
Sandy's avatar
Sandy committed
213 214 215
 *
 *
 */
216
@property (nonatomic, copy) NSString *message;
Sandy's avatar
Sandy committed
217
/**
218
 * 返回数据
Sandy's avatar
Sandy committed
219 220 221
 *
 *
 */
222 223
@property (nonatomic, strong) NSObject *data;
@end /* interface RsResponse */
224 225 226 227



/**
228
 *  登录结果。
229 230 231
 
 @author Debenson
 @since 0.1
Sandy's avatar
Sandy committed
232
 
233
 */
234
@interface LoginResult : JSONModel
Sandy's avatar
Sandy committed
235 236 237 238
/**
 *
 *
 *
239
 */
240
@property (nonatomic, strong) StationUserEntity *user;
Sandy's avatar
Sandy committed
241
/**
242 243 244
 * 由当前位置定位的加油站。 <br/>
 * 如果登录时没有传LoginRequest#getLongitude() 或
 * LoginRequest#getLatitude()或无法定位将返回null。
Sandy's avatar
Sandy committed
245 246
 *
 *
247
 */
248
@property (nonatomic, strong) StationEntity *station;
Sandy's avatar
Sandy committed
249
/**
250
 * 创建订单的url,APP可以拿此值生成二维码让用户扫描直接进入下单界面
Sandy's avatar
Sandy committed
251 252 253
 *
 *
 */
254 255
@property (nonatomic, copy) NSString *createOrderUrl;
@end /* interface LoginResult */
256 257 258 259



/**
Sandy's avatar
Sandy committed
260
 *  修改密码请求。
261 262 263
 
 @author Debenson
 @since 0.1
Sandy's avatar
Sandy committed
264
 
265
 */
Sandy's avatar
Sandy committed
266 267
@interface ModifyPasswordRequest : JSONModel
/**
268
 * 加油员用户名。
Sandy's avatar
Sandy committed
269 270
 *
 *
271 272
 */
@property (nonatomic, copy) NSString *userName;
Sandy's avatar
Sandy committed
273 274 275 276
/**
 * 原密码。
 *
 *
277
 */
Sandy's avatar
Sandy committed
278 279
@property (nonatomic, copy) NSString *oldPassword;
/**
280
 * 新密码
Sandy's avatar
Sandy committed
281 282
 *
 *
283 284
 */
@property (nonatomic, copy) NSString *fnewPassword;
Sandy's avatar
Sandy committed
285
@end /* interface ModifyPasswordRequest */
286 287 288



Sandy's avatar
Sandy committed
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
/**
 *  加油员对账请求。
 
 @author liyang
 @since 0.1
 
 */
@interface CheckOrderRequest : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *userId;
/**
 * (no documentation provided)
 * @see NSString
 *
 */
@property (nonatomic, strong) NSArray<NSString *> *orderIds;
@end /* interface CheckOrderRequest */



313
/**
Sandy's avatar
Sandy committed
314
 *  重置密码请求。
315 316 317
 
 @author Debenson
 @since 0.1
Sandy's avatar
Sandy committed
318
 
319
 */
Sandy's avatar
Sandy committed
320 321
@interface ResetPasswordRequest : JSONModel
/**
322
 * 加油员用户名。
Sandy's avatar
Sandy committed
323 324
 *
 *
325 326
 */
@property (nonatomic, copy) NSString *userName;
Sandy's avatar
Sandy committed
327 328 329 330
/**
 * 短信验证码,请先调用发送短信接口
 *
 *
331
 */
Sandy's avatar
Sandy committed
332 333
@property (nonatomic, copy) NSString *smsCode;
/**
334
 * 新密码
Sandy's avatar
Sandy committed
335 336
 *
 *
337 338
 */
@property (nonatomic, copy) NSString *fnewPassword;
Sandy's avatar
Sandy committed
339
@end /* interface ResetPasswordRequest */
340 341 342 343



/**
Sandy's avatar
Sandy committed
344 345 346 347 348
 *  核券请求
 
 @author liyang
 @since 0.1
 
349
 */
350
@interface CheckProductOrderRequest : JSONModel
Sandy's avatar
Sandy committed
351
/**
352
 *
Sandy's avatar
Sandy committed
353 354
 *
 *
355
 */
356
@property (nonatomic, copy) NSString *checkManId;
Sandy's avatar
Sandy committed
357 358 359 360
/**
 *
 *
 *
361
 */
362
@property (nonatomic, copy) NSString *checkManName;
Sandy's avatar
Sandy committed
363 364 365 366
/**
 *
 *
 *
367
 */
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
@property (nonatomic, copy) NSString *checkDate;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *checkKey;
@end /* interface CheckProductOrderRequest */



/**
 *  交易信息汇总。
 
 @author liyang
 @since 0.1
 
 */
@interface TradeStatisticsResult : JSONModel
Sandy's avatar
Sandy committed
387 388 389 390
/**
 *
 *
 *
391
 */
392 393 394 395 396 397 398 399
@property (nonatomic, assign) long long orderCount;
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, assign) double totalAmount;
@end /* interface TradeStatisticsResult */
Sandy's avatar
Sandy committed
400 401 402 403 404



/**
 *  @Title: Entity
405
 @Description: 加油员账户
Sandy's avatar
Sandy committed
406
 @author onlineGenerator
407
 @date 2016-11-17 19:47:38
Sandy's avatar
Sandy committed
408
 @version V1.0
Sandy's avatar
Sandy committed
409 410
 
 
411
 */
412
@interface StationUserAcctEntity : JSONModel
Sandy's avatar
Sandy committed
413
/**
Sandy's avatar
Sandy committed
414
 * 方法: 取得主键
Sandy's avatar
Sandy committed
415 416
 *
 *
417
 */
Sandy's avatar
Sandy committed
418
@property (nonatomic, copy) NSString *fid;
Sandy's avatar
Sandy committed
419
/**
420
 * 方法: 取得加油员标识
Sandy's avatar
Sandy committed
421 422
 *
 *
423
 */
424
@property (nonatomic, copy) NSString *userId;
Sandy's avatar
Sandy committed
425
/**
426
 * 方法: 取得加油员名称
Sandy's avatar
Sandy committed
427 428
 *
 *
429
 */
430
@property (nonatomic, copy) NSString *userName;
Sandy's avatar
Sandy committed
431
/**
432
 * 方法: 取得余额
Sandy's avatar
Sandy committed
433 434
 *
 *
435
 */
Sandy's avatar
Sandy committed
436
@property (nonatomic, strong) NSNumber *balance;
Sandy's avatar
Sandy committed
437
/**
438
 * 方法: 取得日订单数量
Sandy's avatar
Sandy committed
439 440
 *
 *
441
 */
442
@property (nonatomic, assign) NSInteger dailyBillCount;
Sandy's avatar
Sandy committed
443
/**
444
 * 方法: 取得可提现余额
Sandy's avatar
Sandy committed
445 446
 *
 *
447
 */
Sandy's avatar
Sandy committed
448
@property (nonatomic, strong) NSNumber *drawBalance;
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
@end /* interface StationUserAcctEntity */



/**
 *  @Title: Entity
 @Description: app应用更新信息
 @author onlineGenerator
 @date 2016-08-31 09:51:09
 @version V1.0
 
 
 */
@interface TOAppversionEntity : JSONModel
/**
 * 方法: 取得主键
 *
Sandy's avatar
Sandy committed
466
 *
467
 */
468
@property (nonatomic, copy) NSString *fid;
Sandy's avatar
Sandy committed
469
/**
470
 * 方法: 取得创建人名称
Sandy's avatar
Sandy committed
471 472
 *
 *
473
 */
474
@property (nonatomic, copy) NSString *createName;
Sandy's avatar
Sandy committed
475
/**
476
 * 方法: 取得创建人登录名称
Sandy's avatar
Sandy committed
477 478
 *
 *
479
 */
480
@property (nonatomic, copy) NSString *createBy;
Sandy's avatar
Sandy committed
481
/**
482
 * 方法: 取得创建日期
Sandy's avatar
Sandy committed
483 484
 *
 *
485
 */
486
@property (nonatomic, copy) NSString *createDate;
Sandy's avatar
Sandy committed
487
/**
488
 * 方法: 取得更新人名称
Sandy's avatar
Sandy committed
489 490
 *
 *
491
 */
492
@property (nonatomic, copy) NSString *updateName;
Sandy's avatar
Sandy committed
493
/**
494
 * 方法: 取得更新人登录名称
Sandy's avatar
Sandy committed
495 496
 *
 *
497
 */
498
@property (nonatomic, copy) NSString *updateBy;
Sandy's avatar
Sandy committed
499
/**
500
 * 方法: 取得更新日期
Sandy's avatar
Sandy committed
501 502 503
 *
 *
 */
504
@property (nonatomic, copy) NSString *updateDate;
Sandy's avatar
Sandy committed
505
/**
506
 * 方法: 取得所属部门
Sandy's avatar
Sandy committed
507 508 509
 *
 *
 */
510
@property (nonatomic, copy) NSString *sysOrgCode;
Sandy's avatar
Sandy committed
511
/**
512
 * 方法: 取得版本号
Sandy's avatar
Sandy committed
513 514 515
 *
 *
 */
516
@property (nonatomic, copy) NSString *version;
Sandy's avatar
Sandy committed
517
/**
518
 * 方法: 取得新版本下载路径
Sandy's avatar
Sandy committed
519 520 521
 *
 *
 */
522
@property (nonatomic, copy) NSString *url;
Sandy's avatar
Sandy committed
523
/**
524
 * 方法: 取得是否强制更新
Sandy's avatar
Sandy committed
525 526 527
 *
 *
 */
528
@property (nonatomic, copy) NSString *forceupdate;
Sandy's avatar
Sandy committed
529
/**
530
 * 方法: 取得app类型
Sandy's avatar
Sandy committed
531 532 533
 *
 *
 */
534 535
@property (nonatomic, copy) NSString *apptype;
@end /* interface TOAppversionEntity */
536 537 538 539 540



/**
 *  @Title: Entity
541
 @Description: 提现申请单
542
 @author onlineGenerator
543
 @date 2017-01-22 09:48:08
544
 @version V1.0
Sandy's avatar
Sandy committed
545 546
 
 
547
 */
548
@interface DrawCashBillEntity : JSONModel
Sandy's avatar
Sandy committed
549 550 551 552
/**
 * 主键
 *
 *
553 554
 */
@property (nonatomic, copy) NSString *fid;
Sandy's avatar
Sandy committed
555 556 557 558
/**
 * 创建人名称
 *
 *
559 560
 */
@property (nonatomic, copy) NSString *createName;
Sandy's avatar
Sandy committed
561 562 563 564
/**
 * 创建人登录名称
 *
 *
565 566
 */
@property (nonatomic, copy) NSString *createBy;
Sandy's avatar
Sandy committed
567 568 569 570
/**
 * 创建日期
 *
 *
571 572
 */
@property (nonatomic, copy) NSString *createDate;
Sandy's avatar
Sandy committed
573 574 575 576
/**
 * 更新人名称
 *
 *
577 578
 */
@property (nonatomic, copy) NSString *updateName;
Sandy's avatar
Sandy committed
579 580 581 582
/**
 * 更新人登录名称
 *
 *
583 584
 */
@property (nonatomic, copy) NSString *updateBy;
Sandy's avatar
Sandy committed
585 586 587 588
/**
 * 更新日期
 *
 *
589 590
 */
@property (nonatomic, copy) NSString *updateDate;
Sandy's avatar
Sandy committed
591 592 593 594
/**
 * 所属部门
 *
 *
595 596
 */
@property (nonatomic, copy) NSString *sysOrgCode;
Sandy's avatar
Sandy committed
597 598 599 600
/**
 * 所属公司
 *
 *
601 602
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
Sandy's avatar
Sandy committed
603
/**
604
 * 申请人姓名
Sandy's avatar
Sandy committed
605 606
 *
 *
607
 */
608
@property (nonatomic, copy) NSString *applicantName;
Sandy's avatar
Sandy committed
609
/**
610
 * 申请人id
Sandy's avatar
Sandy committed
611 612
 *
 *
613
 */
614
@property (nonatomic, copy) NSString *applicantId;
Sandy's avatar
Sandy committed
615
/**
616
 * 提现工分数量
Sandy's avatar
Sandy committed
617 618
 *
 *
619
 */
Sandy's avatar
Sandy committed
620
@property (nonatomic, strong) NSNumber *workpoint;
Sandy's avatar
Sandy committed
621
/**
622
 * 提现金额
Sandy's avatar
Sandy committed
623 624
 *
 *
625
 */
Sandy's avatar
Sandy committed
626
@property (nonatomic, strong) NSNumber *cash;
Sandy's avatar
Sandy committed
627
/**
628
 * 状态
Sandy's avatar
Sandy committed
629 630
 *
 *
631
 */
632
@property (nonatomic, copy) NSString *state;
Sandy's avatar
Sandy committed
633
/**
634
 * 备注
Sandy's avatar
Sandy committed
635 636
 *
 *
637
 */
638
@property (nonatomic, copy) NSString *remark;
Sandy's avatar
Sandy committed
639
/**
640
 * 审批人姓名
Sandy's avatar
Sandy committed
641 642
 *
 *
643
 */
644
@property (nonatomic, copy) NSString *approverName;
Sandy's avatar
Sandy committed
645
/**
646
 * 审批人id
Sandy's avatar
Sandy committed
647 648
 *
 *
649
 */
650
@property (nonatomic, copy) NSString *approverId;
Sandy's avatar
Sandy committed
651
/**
652
 * 复核人姓名
Sandy's avatar
Sandy committed
653 654
 *
 *
655
 */
656
@property (nonatomic, copy) NSString *checkerName;
Sandy's avatar
Sandy committed
657
/**
658
 * 复核人id
Sandy's avatar
Sandy committed
659 660
 *
 *
661
 */
Sandy's avatar
Sandy committed
662 663
@property (nonatomic, copy) NSString *checkerId;
/**
664
 * 拒绝理由
Sandy's avatar
Sandy committed
665 666
 *
 *
667
 */
668
@property (nonatomic, copy) NSString *cause;
Sandy's avatar
Sandy committed
669
/**
670
 * 单号
Sandy's avatar
Sandy committed
671 672
 *
 *
673
 */
674 675 676 677 678 679 680
@property (nonatomic, copy) NSString *billNumber;
/**
 * 结束日期
 *
 *
 */
@property (nonatomic, copy) NSString *finishDate;
Sandy's avatar
Sandy committed
681
/**
682
 * 审批日期
Sandy's avatar
Sandy committed
683 684
 *
 *
685
 */
686 687
@property (nonatomic, copy) NSString *approveDate;
@end /* interface DrawCashBillEntity */
688 689 690



Sandy's avatar
Sandy committed
691
/**
692 693 694
 *
 @Title: Entity
 @Description: 商户商品
Sandy's avatar
Sandy committed
695
 @author onlineGenerator
696
 @date 2017-03-09 13:21:33
Sandy's avatar
Sandy committed
697
 @version V1.0
Sandy's avatar
Sandy committed
698 699
 
 
Sandy's avatar
Sandy committed
700
 */
701
@interface MerchantProductEntity : JSONModel
Sandy's avatar
Sandy committed
702
/**
Sandy's avatar
Sandy committed
703
 * 主键
Sandy's avatar
Sandy committed
704 705
 *
 *
Sandy's avatar
Sandy committed
706 707
 */
@property (nonatomic, copy) NSString *fid;
Sandy's avatar
Sandy committed
708
/**
Sandy's avatar
Sandy committed
709
 * 创建人名称
Sandy's avatar
Sandy committed
710 711
 *
 *
Sandy's avatar
Sandy committed
712 713
 */
@property (nonatomic, copy) NSString *createName;
Sandy's avatar
Sandy committed
714
/**
Sandy's avatar
Sandy committed
715
 * 创建人登录名称
Sandy's avatar
Sandy committed
716 717
 *
 *
Sandy's avatar
Sandy committed
718 719
 */
@property (nonatomic, copy) NSString *createBy;
Sandy's avatar
Sandy committed
720
/**
Sandy's avatar
Sandy committed
721
 * 创建日期
Sandy's avatar
Sandy committed
722 723
 *
 *
Sandy's avatar
Sandy committed
724 725
 */
@property (nonatomic, copy) NSString *createDate;
Sandy's avatar
Sandy committed
726
/**
Sandy's avatar
Sandy committed
727
 * 更新人名称
Sandy's avatar
Sandy committed
728 729
 *
 *
Sandy's avatar
Sandy committed
730 731
 */
@property (nonatomic, copy) NSString *updateName;
Sandy's avatar
Sandy committed
732
/**
Sandy's avatar
Sandy committed
733
 * 更新人登录名称
Sandy's avatar
Sandy committed
734 735
 *
 *
Sandy's avatar
Sandy committed
736 737
 */
@property (nonatomic, copy) NSString *updateBy;
Sandy's avatar
Sandy committed
738
/**
Sandy's avatar
Sandy committed
739
 * 更新日期
Sandy's avatar
Sandy committed
740 741
 *
 *
Sandy's avatar
Sandy committed
742 743
 */
@property (nonatomic, copy) NSString *updateDate;
Sandy's avatar
Sandy committed
744
/**
Sandy's avatar
Sandy committed
745
 * 所属部门
Sandy's avatar
Sandy committed
746 747
 *
 *
Sandy's avatar
Sandy committed
748 749
 */
@property (nonatomic, copy) NSString *sysOrgCode;
Sandy's avatar
Sandy committed
750
/**
Sandy's avatar
Sandy committed
751
 * 所属公司
Sandy's avatar
Sandy committed
752 753
 *
 *
Sandy's avatar
Sandy committed
754 755
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
Sandy's avatar
Sandy committed
756
/**
757
 * 商户id
Sandy's avatar
Sandy committed
758 759
 *
 *
Sandy's avatar
Sandy committed
760
 */
761
@property (nonatomic, copy) NSString *merchantId;
Sandy's avatar
Sandy committed
762
/**
763
 * 商户名称
Sandy's avatar
Sandy committed
764 765
 *
 *
Sandy's avatar
Sandy committed
766
 */
767
@property (nonatomic, copy) NSString *merchantName;
Sandy's avatar
Sandy committed
768
/**
769
 * 商户代码
Sandy's avatar
Sandy committed
770 771
 *
 *
Sandy's avatar
Sandy committed
772
 */
773
@property (nonatomic, copy) NSString *merchantCode;
Sandy's avatar
Sandy committed
774
/**
775
 * 商品名称
Sandy's avatar
Sandy committed
776 777
 *
 *
Sandy's avatar
Sandy committed
778
 */
779
@property (nonatomic, copy) NSString *productId;
Sandy's avatar
Sandy committed
780
/**
781
 * 商品代码
Sandy's avatar
Sandy committed
782 783
 *
 *
Sandy's avatar
Sandy committed
784
 */
785
@property (nonatomic, copy) NSString *productCode;
Sandy's avatar
Sandy committed
786
/**
787
 * 商品类型
Sandy's avatar
Sandy committed
788 789
 *
 *
Sandy's avatar
Sandy committed
790
 */
791
@property (nonatomic, copy) NSString *productType;
Sandy's avatar
Sandy committed
792
/**
793
 * 商品价格
Sandy's avatar
Sandy committed
794 795
 *
 *
Sandy's avatar
Sandy committed
796
 */
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
@property (nonatomic, copy) NSString *productPrice;
/**
 * 商品描述
 *
 *
 */
@property (nonatomic, copy) NSString *productDescription;
/**
 * 有效期始
 *
 *
 */
@property (nonatomic, copy) NSString *validatedStartDate;
/**
 * 有效期至
 *
 *
 */
@property (nonatomic, copy) NSString *validatedEndDate;
816
/**
817
 * 商品图片
Sandy's avatar
Sandy committed
818 819
 *
 *
820
 */
821 822
@property (nonatomic, copy) NSString *productImageUrl;
@end /* interface MerchantProductEntity */
823 824 825



Sandy's avatar
Sandy committed
826 827 828
/**
 *
 @Title: Entity
829
 @Description: 商品
Sandy's avatar
Sandy committed
830
 @author onlineGenerator
831
 @date 2017-03-09 13:24:43
Sandy's avatar
Sandy committed
832 833 834 835
 @version V1.0
 
 
 */
836
@interface ProductEntity : JSONModel
Sandy's avatar
Sandy committed
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
/**
 * 主键
 *
 *
 */
@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 *sysCompanyCode;
/**
 * 名称
 *
 *
 */
@property (nonatomic, copy) NSString *name;
/**
898
 * 代码
Sandy's avatar
Sandy committed
899 900 901
 *
 *
 */
902
@property (nonatomic, copy) NSString *code;
Sandy's avatar
Sandy committed
903
/**
904
 * 价格
Sandy's avatar
Sandy committed
905 906 907
 *
 *
 */
Sandy's avatar
Sandy committed
908
@property (nonatomic, strong) NSNumber *price;
Sandy's avatar
Sandy committed
909
/**
910
 * 描述
Sandy's avatar
Sandy committed
911 912 913
 *
 *
 */
914
@property (nonatomic, copy) NSString *fdescription;
Sandy's avatar
Sandy committed
915
/**
916
 * 有效期开始
Sandy's avatar
Sandy committed
917 918 919
 *
 *
 */
920
@property (nonatomic, copy) NSString *validatedStartDate;
Sandy's avatar
Sandy committed
921
/**
922
 * 有效期结束
Sandy's avatar
Sandy committed
923 924 925
 *
 *
 */
926
@property (nonatomic, copy) NSString *validatedEndDate;
Sandy's avatar
Sandy committed
927
/**
928
 * 商品类型
Sandy's avatar
Sandy committed
929 930 931
 *
 *
 */
932
@property (nonatomic, copy) NSString *type;
Sandy's avatar
Sandy committed
933
/**
934
 * 商品图片链接
Sandy's avatar
Sandy committed
935 936 937
 *
 *
 */
938 939
@property (nonatomic, copy) NSString *imageUrl;
@end /* interface ProductEntity */
Sandy's avatar
Sandy committed
940 941 942



Sandy's avatar
Sandy committed
943 944
/**
 *  @Title: Entity
945
 @Description: 油站油枪
Sandy's avatar
Sandy committed
946
 @author onlineGenerator
947
 @date 2016-11-17 20:47:02
Sandy's avatar
Sandy committed
948
 @version V1.0
Sandy's avatar
Sandy committed
949 950
 
 
Sandy's avatar
Sandy committed
951
 */
952
@interface OilGunEntity : JSONModel
Sandy's avatar
Sandy committed
953
/**
Sandy's avatar
Sandy committed
954
 * 方法: 取得主键
Sandy's avatar
Sandy committed
955 956
 *
 *
Sandy's avatar
Sandy committed
957 958
 */
@property (nonatomic, copy) NSString *fid;
Sandy's avatar
Sandy committed
959
/**
Sandy's avatar
Sandy committed
960
 * 方法: 取得创建人名称
Sandy's avatar
Sandy committed
961 962
 *
 *
Sandy's avatar
Sandy committed
963 964
 */
@property (nonatomic, copy) NSString *createName;
Sandy's avatar
Sandy committed
965
/**
Sandy's avatar
Sandy committed
966
 * 方法: 取得创建人登录名称
Sandy's avatar
Sandy committed
967 968
 *
 *
Sandy's avatar
Sandy committed
969 970
 */
@property (nonatomic, copy) NSString *createBy;
Sandy's avatar
Sandy committed
971
/**
Sandy's avatar
Sandy committed
972
 * 方法: 取得创建日期
Sandy's avatar
Sandy committed
973 974
 *
 *
Sandy's avatar
Sandy committed
975 976
 */
@property (nonatomic, copy) NSString *createDate;
Sandy's avatar
Sandy committed
977
/**
Sandy's avatar
Sandy committed
978
 * 方法: 取得更新人名称
Sandy's avatar
Sandy committed
979 980
 *
 *
Sandy's avatar
Sandy committed
981 982
 */
@property (nonatomic, copy) NSString *updateName;
Sandy's avatar
Sandy committed
983
/**
Sandy's avatar
Sandy committed
984
 * 方法: 取得更新人登录名称
Sandy's avatar
Sandy committed
985 986
 *
 *
Sandy's avatar
Sandy committed
987 988
 */
@property (nonatomic, copy) NSString *updateBy;
Sandy's avatar
Sandy committed
989
/**
Sandy's avatar
Sandy committed
990
 * 方法: 取得更新日期
Sandy's avatar
Sandy committed
991 992
 *
 *
Sandy's avatar
Sandy committed
993 994
 */
@property (nonatomic, copy) NSString *updateDate;
Sandy's avatar
Sandy committed
995
/**
Sandy's avatar
Sandy committed
996
 * 方法: 取得所属部门
Sandy's avatar
Sandy committed
997 998
 *
 *
Sandy's avatar
Sandy committed
999 1000
 */
@property (nonatomic, copy) NSString *sysOrgCode;
Sandy's avatar
Sandy committed
1001
/**
Sandy's avatar
Sandy committed
1002
 * 方法: 取得所属公司
Sandy's avatar
Sandy committed
1003 1004
 *
 *
Sandy's avatar
Sandy committed
1005 1006
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
Sandy's avatar
Sandy committed
1007 1008 1009 1010
/**
 * 方法: 取得编码
 *
 *
Sandy's avatar
Sandy committed
1011
 */
Sandy's avatar
Sandy committed
1012 1013 1014 1015 1016 1017 1018
@property (nonatomic, copy) NSString *code;
/**
 * 方法: 取得名称
 *
 *
 */
@property (nonatomic, copy) NSString *name;
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
/**
 * 方法: 取得油品标识
 *
 *
 */
@property (nonatomic, copy) NSString *gasItemId;
/**
 * 方法: 取得油品编码
 *
 *
 */
@property (nonatomic, copy) NSString *gasItemCode;
/**
 * 方法: 取得油品名称
 *
 *
 */
@property (nonatomic, copy) NSString *gasItemName;
/**
 * 方法: 取得油站标识
 *
 *
 */
@property (nonatomic, copy) NSString *stationId;
@end /* interface OilGunEntity */
Sandy's avatar
Sandy committed
1044 1045 1046 1047 1048



/**
 *  @Title: Entity
1049
 @Description: 油站油品
Sandy's avatar
Sandy committed
1050
 @author onlineGenerator
1051
 @date 2016-11-17 20:47:02
Sandy's avatar
Sandy committed
1052 1053 1054 1055
 @version V1.0
 
 
 */
1056
@interface StationGasItemEntity : JSONModel
Sandy's avatar
Sandy committed
1057
/**
1058
 * 方法: 取得主键
Sandy's avatar
Sandy committed
1059 1060 1061 1062 1063
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
1064
 * 方法: 取得油站标识
Sandy's avatar
Sandy committed
1065 1066 1067
 *
 *
 */
1068
@property (nonatomic, copy) NSString *stationId;
Sandy's avatar
Sandy committed
1069
/**
1070
 * 方法: 取得油品
Sandy's avatar
Sandy committed
1071 1072 1073
 *
 *
 */
1074
@property (nonatomic, copy) NSString *gasItemId;
Sandy's avatar
Sandy committed
1075
/**
1076
 * 方法: 取得油品编码
Sandy's avatar
Sandy committed
1077 1078 1079
 *
 *
 */
1080
@property (nonatomic, copy) NSString *gasItemCode;
Sandy's avatar
Sandy committed
1081
/**
1082
 * 方法: 取得油品名称
Sandy's avatar
Sandy committed
1083 1084 1085
 *
 *
 */
1086
@property (nonatomic, copy) NSString *gasItemName;
Sandy's avatar
Sandy committed
1087
/**
1088
 * 方法: 取得序号
Sandy's avatar
Sandy committed
1089 1090 1091
 *
 *
 */
1092 1093 1094 1095 1096
@property (nonatomic, assign) NSInteger num;
@end /* interface StationGasItemEntity */



Sandy's avatar
Sandy committed
1097
/**
1098 1099 1100 1101 1102 1103 1104
 *  @Title: Entity
 @Description: 非油券
 @author onlineGenerator
 @date 2016-11-30 13:28:57
 @version V1.0
 
 
Sandy's avatar
Sandy committed
1105
 */
1106
@interface OtherTicketEntity : JSONModel
Sandy's avatar
Sandy committed
1107
/**
1108
 * 主键
Sandy's avatar
Sandy committed
1109 1110 1111
 *
 *
 */
1112
@property (nonatomic, copy) NSString *fid;
Sandy's avatar
Sandy committed
1113
/**
1114
 * 创建人名称
Sandy's avatar
Sandy committed
1115 1116 1117
 *
 *
 */
1118
@property (nonatomic, copy) NSString *createName;
Sandy's avatar
Sandy committed
1119
/**
1120
 * 创建人登录名称
Sandy's avatar
Sandy committed
1121 1122 1123
 *
 *
 */
1124
@property (nonatomic, copy) NSString *createBy;
Sandy's avatar
Sandy committed
1125
/**
1126
 * 创建日期
Sandy's avatar
Sandy committed
1127 1128 1129
 *
 *
 */
1130
@property (nonatomic, copy) NSString *createDate;
Sandy's avatar
Sandy committed
1131
/**
1132
 * 更新人名称
Sandy's avatar
Sandy committed
1133 1134 1135
 *
 *
 */
1136
@property (nonatomic, copy) NSString *updateName;
Sandy's avatar
Sandy committed
1137
/**
1138
 * 更新人登录名称
Sandy's avatar
Sandy committed
1139 1140 1141
 *
 *
 */
1142
@property (nonatomic, copy) NSString *updateBy;
Sandy's avatar
Sandy committed
1143
/**
1144
 * 更新日期
Sandy's avatar
Sandy committed
1145 1146 1147
 *
 *
 */
1148
@property (nonatomic, copy) NSString *updateDate;
Sandy's avatar
Sandy committed
1149
/**
1150
 * 所属部门
Sandy's avatar
Sandy committed
1151 1152 1153
 *
 *
 */
1154
@property (nonatomic, copy) NSString *sysOrgCode;
Sandy's avatar
Sandy committed
1155
/**
1156
 * 所属公司
Sandy's avatar
Sandy committed
1157 1158 1159
 *
 *
 */
1160
@property (nonatomic, copy) NSString *sysCompanyCode;
Sandy's avatar
Sandy committed
1161
/**
1162
 * 券号
Sandy's avatar
Sandy committed
1163 1164 1165
 *
 *
 */
1166
@property (nonatomic, copy) NSString *ticketNumber;
Sandy's avatar
Sandy committed
1167
/**
1168
 * 名称
Sandy's avatar
Sandy committed
1169 1170 1171
 *
 *
 */
1172
@property (nonatomic, copy) NSString *name;
Sandy's avatar
Sandy committed
1173
/**
1174
 * 类型
Sandy's avatar
Sandy committed
1175 1176 1177
 *
 *
 */
1178
@property (nonatomic, copy) NSString *type;
Sandy's avatar
Sandy committed
1179
/**
1180
 * 面额
Sandy's avatar
Sandy committed
1181 1182 1183
 *
 *
 */
Sandy's avatar
Sandy committed
1184
@property (nonatomic, strong) NSNumber *total;
Sandy's avatar
Sandy committed
1185
/**
1186
 * 实际抵扣金额
Sandy's avatar
Sandy committed
1187 1188 1189
 *
 *
 */
Sandy's avatar
Sandy committed
1190
@property (nonatomic, strong) NSNumber *realPayTotal;
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
/**
 * 状态
 *
 *
 */
@property (nonatomic, copy) NSString *state;
/**
 * 所属会员
 *
 *
 */
@property (nonatomic, copy) NSString *memberId;
/**
 * 所属会员名称
 *
 *
 */
@property (nonatomic, copy) NSString *memberName;
/**
 * 订单单号
 *
 *
 */
@property (nonatomic, copy) NSString *orderNumber;
/**
 * 有效期始
 *
 *
 */
@property (nonatomic, copy) NSString *startDate;
/**
 * 有效期止
 *
 *
 */
@property (nonatomic, copy) NSString *endDate;
/**
 * 使用说明
 *
 *
 */
@property (nonatomic, copy) NSString *remak;
/**
 * 发券时间
 *
 *
 */
@property (nonatomic, copy) NSString *distributeDate;
@end /* interface OtherTicketEntity */
Sandy's avatar
Sandy committed
1240 1241 1242 1243



/**
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
 * (no documentation provided)
 */
@interface IdEntity : JSONModel
/**
 * (no documentation provided)
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
@end /* interface IdEntity */



/**
 *
 @Title: Entity
 @Description: 商品订单
Sandy's avatar
Sandy committed
1261
 @author onlineGenerator
1262
 @date 2017-03-13 13:54:24
Sandy's avatar
Sandy committed
1263 1264 1265 1266
 @version V1.0
 
 
 */
1267
@interface ProductOrderEntity : JSONModel
Sandy's avatar
Sandy committed
1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
/**
 * 主键
 *
 *
 */
@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 *sysCompanyCode;
/**
1323
 * 商品id
Sandy's avatar
Sandy committed
1324 1325 1326
 *
 *
 */
1327
@property (nonatomic, copy) NSString *productId;
Sandy's avatar
Sandy committed
1328
/**
1329
 * 商品名称
Sandy's avatar
Sandy committed
1330 1331 1332
 *
 *
 */
1333
@property (nonatomic, copy) NSString *productName;
Sandy's avatar
Sandy committed
1334
/**
1335
 * 商品代码
Sandy's avatar
Sandy committed
1336 1337 1338
 *
 *
 */
1339
@property (nonatomic, copy) NSString *productCode;
Sandy's avatar
Sandy committed
1340
/**
1341
 * 总金额
Sandy's avatar
Sandy committed
1342 1343 1344
 *
 *
 */
Sandy's avatar
Sandy committed
1345
@property (nonatomic, strong) NSNumber *total;
Sandy's avatar
Sandy committed
1346
/**
1347
 * 实际支付金额
Sandy's avatar
Sandy committed
1348 1349 1350
 *
 *
 */
Sandy's avatar
Sandy committed
1351
@property (nonatomic, strong) NSNumber *realPayTotal;
Sandy's avatar
Sandy committed
1352
/**
1353
 * 优惠金额
Sandy's avatar
Sandy committed
1354 1355 1356
 *
 *
 */
Sandy's avatar
Sandy committed
1357
@property (nonatomic, strong) NSNumber *discountAmount;
Sandy's avatar
Sandy committed
1358
/**
1359
 * 支付时间
Sandy's avatar
Sandy committed
1360 1361 1362
 *
 *
 */
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
@property (nonatomic, copy) NSString *payTime;
/**
 * 商户id
 *
 *
 */
@property (nonatomic, copy) NSString *merchantId;
/**
 * 商户名称
 *
 *
 */
@property (nonatomic, copy) NSString *merchantName;
/**
 * 商户代码
 *
 *
 */
@property (nonatomic, copy) NSString *merchantCode;
/**
 * 会员id
 *
 *
 */
@property (nonatomic, copy) NSString *mermberId;
/**
 * 会员名称
 *
 *
 */
@property (nonatomic, copy) NSString *memberName;
/**
 * 优惠券id
 *
 *
 */
@property (nonatomic, copy) NSString *couponId;
Sandy's avatar
Sandy committed
1400
/**
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
 * 优惠券号
 *
 *
 */
@property (nonatomic, copy) NSString *couponNumber;
/**
 * 兑换码
 *
 *
 */
@property (nonatomic, copy) NSString *checkKey;
/**
 * 单号
Sandy's avatar
Sandy committed
1414 1415 1416 1417 1418
 *
 *
 */
@property (nonatomic, copy) NSString *billNumber;
/**
1419
 * 转态
Sandy's avatar
Sandy committed
1420 1421 1422 1423
 *
 *
 */
@property (nonatomic, copy) NSString *state;
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
/**
 * 支付方式
 *
 *
 */
@property (nonatomic, copy) NSString *payMethod;
/**
 * 支付流水号
 *
 *
 */
@property (nonatomic, copy) NSString *payFlowNum;
/**
 * 支付失败原因
 *
 *
 */
@property (nonatomic, copy) NSString *payFailedMsg;
/**
 * 买家支付宝用户号
 *
 *
 */
@property (nonatomic, copy) NSString *alipayBuyerId;
/**
 * 买家支付宝账号
 *
 *
 */
@property (nonatomic, copy) NSString *alipaybuyerLogonId;
/**
 * 会员手机号
 *
 *
 */
@property (nonatomic, copy) NSString *memberMobilephone;
/**
 * 优惠券名称
 *
 *
 */
@property (nonatomic, copy) NSString *couponName;
/**
 * 商品图片
 *
 *
 */
@property (nonatomic, copy) NSString *productImageUrl;
1472 1473
@property (nonatomic, copy) NSString *validatedEndDate;
@property (nonatomic, copy) NSString *validatedStartDate;
1474
@end /* interface ProductOrderEntity */
Sandy's avatar
Sandy committed
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624



/**
 *  @Title: Entity
 @Description: 加油单
 @author onlineGenerator
 @date 2016-11-17 19:48:57
 @version V1.0
 
 
 */
@interface OrderEntity : 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 *sysCompanyCode;
/**
 * 方法: 取得单号
 *
 *
 */
@property (nonatomic, copy) NSString *billNumber;
/**
 * 方法: 取得油站标识
 *
 *
 */
@property (nonatomic, copy) NSString *stationId;
/**
 * 方法: 取得油站名称
 *
 *
 */
@property (nonatomic, copy) NSString *stationName;
/**
 * 方法: 取得加油员标识
 *
 *
 */
@property (nonatomic, copy) NSString *stationUserId;
/**
 * 方法: 取得加油员名称
 *
 *
 */
@property (nonatomic, copy) NSString *stationUserName;
/**
 * 方法: 取得加油员真实姓名
 *
 *
 */
@property (nonatomic, copy) NSString *stationUserRealName;
/**
 * 方法: 取得会员标识
 *
 *
 */
@property (nonatomic, copy) NSString *memberId;
/**
 * 方法: 取得会员名称
 *
 *
 */
@property (nonatomic, copy) NSString *memberName;
/**
 * 方法: 取得会员手机号
 *
 *
 */
@property (nonatomic, copy) NSString *memberMobilephone;
/**
 * 方法: 取得油枪标识
 *
 *
 */
@property (nonatomic, copy) NSString *oilGunId;
/**
 * 方法: 取得油枪名称
 *
 *
 */
@property (nonatomic, copy) NSString *oilGunName;
/**
 * 方法: 取得油品标识
 *
 *
 */
@property (nonatomic, copy) NSString *gasItemId;
/**
 * 方法: 取得油品名称
 *
 *
 */
@property (nonatomic, copy) NSString *gasItemName;
/**
 * 方法: 取得订单总金额
 *
 *
 */
Sandy's avatar
Sandy committed
1625
@property (nonatomic, strong) NSNumber *total;
Sandy's avatar
Sandy committed
1626 1627 1628 1629 1630
/**
 * 方法: 取得实付金额
 *
 *
 */
Sandy's avatar
Sandy committed
1631
@property (nonatomic, strong) NSNumber *realPayTotal;
Sandy's avatar
Sandy committed
1632 1633 1634 1635 1636 1637 1638
/**
 * 方法: 取得支付时间
 *
 *
 */
@property (nonatomic, copy) NSString *payTime;
/**
Sandy's avatar
Sandy committed
1639
 * 方法: 取得支付方���
Sandy's avatar
Sandy committed
1640 1641 1642 1643 1644 1645 1646 1647 1648
 *
 *
 */
@property (nonatomic, copy) NSString *payMethod;
/**
 * 方法: 取得销售提成
 *
 *
 */
Sandy's avatar
Sandy committed
1649
@property (nonatomic, strong) NSNumber *deduct;
Sandy's avatar
Sandy committed
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727
/**
 * 方法: 取得是否开票
 *
 *
 */
@property (nonatomic, copy) NSString *invoice;
/**
 * 方法: 取得小票打印次数
 *
 *
 */
@property (nonatomic, assign) NSInteger printed;
/**
 * 方法: 取得最后打印时间
 *
 *
 */
@property (nonatomic, copy) NSString *lstPrintedTime;
/**
 * 方法: 取得支付流水号
 *
 *
 */
@property (nonatomic, copy) NSString *payFlowNum;
/**
 * 方法: 取得订单状态
 *
 *
 */
@property (nonatomic, copy) NSString *state;
/**
 * 方法: 取得备注
 *
 *
 */
@property (nonatomic, copy) NSString *remark;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *printId;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *vehicleNo;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *payFailedMsg;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *printState;
/**
 *
 *
 *
 */
@property (nonatomic, copy) NSString *invoiceId;
/**
 * 买家支付宝用户号
 *
 *
 */
@property (nonatomic, copy) NSString *alipayBuyerId;
/**
 * 买家支付宝账号
 *
 *
 */
@property (nonatomic, copy) NSString *alipaybuyerLogonId;
Sandy's avatar
Sandy committed
1728 1729 1730 1731 1732 1733
/**
 * 对账状态
 *
 *
 */
@property (nonatomic, copy) NSString *checkState;
Sandy's avatar
Sandy committed
1734 1735 1736 1737 1738 1739
@end /* interface OrderEntity */



/**
 *  @Title: Entity
1740
 @Description: 加油员账户流水
Sandy's avatar
Sandy committed
1741
 @author onlineGenerator
1742
 @date 2016-11-17 19:48:43
Sandy's avatar
Sandy committed
1743 1744 1745 1746
 @version V1.0
 
 
 */
1747
@interface StationUserAcctHisEntity : JSONModel
Sandy's avatar
Sandy committed
1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772
/**
 * 方法: 取得主键
 *
 *
 */
@property (nonatomic, copy) NSString *fid;
/**
 * 方法: 取得创建人名称
 *
 *
 */
@property (nonatomic, copy) NSString *createName;
/**
 * 方法: 取得创建人登录名称
 *
 *
 */
@property (nonatomic, copy) NSString *createBy;
/**
 * 方法: 取得创建日期
 *
 *
 */
@property (nonatomic, copy) NSString *createDate;
/**
1773
 * 方法: 取得更新人名称
Sandy's avatar
Sandy committed
1774 1775 1776 1777 1778
 *
 *
 */
@property (nonatomic, copy) NSString *updateName;
/**
1779
 * 方法: 取得更新人登录名称
Sandy's avatar
Sandy committed
1780 1781 1782 1783 1784
 *
 *
 */
@property (nonatomic, copy) NSString *updateBy;
/**
1785
 * 方法: 取得更新日期
Sandy's avatar
Sandy committed
1786 1787 1788 1789 1790
 *
 *
 */
@property (nonatomic, copy) NSString *updateDate;
/**
1791
 * 方法: 取得所属部门
Sandy's avatar
Sandy committed
1792 1793 1794 1795 1796
 *
 *
 */
@property (nonatomic, copy) NSString *sysOrgCode;
/**
1797
 * 方法: 取得所属公司
Sandy's avatar
Sandy committed
1798 1799 1800 1801 1802
 *
 *
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
1803
 * 方法: 取得加油员标识
Sandy's avatar
Sandy committed
1804 1805 1806
 *
 *
 */
1807
@property (nonatomic, copy) NSString *userId;
Sandy's avatar
Sandy committed
1808
/**
1809
 * 方法: 取得变化前余额
Sandy's avatar
Sandy committed
1810 1811 1812
 *
 *
 */
Sandy's avatar
Sandy committed
1813
@property (nonatomic, strong) NSNumber *oldBalance;
Sandy's avatar
Sandy committed
1814
/**
1815
 * 方法: 取得发生额
Sandy's avatar
Sandy committed
1816 1817 1818
 *
 *
 */
Sandy's avatar
Sandy committed
1819
@property (nonatomic, strong) NSNumber *occur;
Sandy's avatar
Sandy committed
1820
/**
1821
 * 方法: 取得变化后余额
Sandy's avatar
Sandy committed
1822 1823 1824
 *
 *
 */
Sandy's avatar
Sandy committed
1825
@property (nonatomic, strong) NSNumber *fnewBalance;
Sandy's avatar
Sandy committed
1826
/**
1827
 * 方法: 取得业务单号
Sandy's avatar
Sandy committed
1828 1829 1830
 *
 *
 */
1831
@property (nonatomic, copy) NSString *billNumber;
Sandy's avatar
Sandy committed
1832
/**
1833
 * 方法: 取得业务动作
Sandy's avatar
Sandy committed
1834 1835 1836
 *
 *
 */
1837
@property (nonatomic, copy) NSString *action;
Sandy's avatar
Sandy committed
1838
/**
1839
 * 方法: 取得备注
Sandy's avatar
Sandy committed
1840 1841 1842
 *
 *
 */
1843
@property (nonatomic, copy) NSString *remark;
Sandy's avatar
Sandy committed
1844
/**
1845
 * 方法: 取得加油员名称
Sandy's avatar
Sandy committed
1846 1847 1848
 *
 *
 */
1849
@property (nonatomic, copy) NSString *userName;
Sandy's avatar
Sandy committed
1850
/**
1851
 * 方法: 取得交易编号
Sandy's avatar
Sandy committed
1852 1853 1854
 *
 *
 */
1855 1856
@property (nonatomic, assign) NSInteger tradeNo;
@end /* interface StationUserAcctHisEntity */
Sandy's avatar
Sandy committed
1857 1858 1859 1860



/**
1861 1862 1863
 *  核券请求
 
 @author liyang
Sandy's avatar
Sandy committed
1864 1865 1866
 @since 0.1
 
 */
1867
@interface CheckTicketRequest : JSONModel
Sandy's avatar
Sandy committed
1868
/**
1869
 * 券号
Sandy's avatar
Sandy committed
1870 1871 1872
 *
 *
 */
1873
@property (nonatomic, copy) NSString *ticketNumber;
Sandy's avatar
Sandy committed
1874 1875 1876 1877
/**
 *
 *
 *
Sandy's avatar
Sandy committed
1878
 */
1879
@property (nonatomic, copy) NSString *checkManId;
Sandy's avatar
Sandy committed
1880
/**
1881
 *
Sandy's avatar
Sandy committed
1882 1883 1884
 *
 *
 */
1885
@property (nonatomic, copy) NSString *checkManName;
Sandy's avatar
Sandy committed
1886
/**
1887
 *
Sandy's avatar
Sandy committed
1888 1889 1890
 *
 *
 */
1891 1892 1893 1894 1895
@property (nonatomic, copy) NSString *checkDate;
@end /* interface CheckTicketRequest */



Sandy's avatar
Sandy committed
1896
/**
1897 1898 1899 1900 1901
 *  登录结果。
 
 @author liyang
 @since 0.1
 
Sandy's avatar
Sandy committed
1902
 */
1903
@interface MerchantLoginResult : JSONModel
Sandy's avatar
Sandy committed
1904
/**
1905
 * 获取商户
Sandy's avatar
Sandy committed
1906 1907 1908
 *
 *
 */
1909
@property (nonatomic, strong) MerchantEntity *merchant;
Sandy's avatar
Sandy committed
1910 1911 1912 1913 1914
/**
 * (no documentation provided)
 *
 *
 */
1915 1916 1917 1918 1919
@property (nonatomic, strong) MerchantUserEntity *merchantUser;
@end /* interface MerchantLoginResult */



Sandy's avatar
Sandy committed
1920
/**
1921 1922 1923 1924 1925 1926 1927 1928 1929
 *  加油员登录请求。
 
 @author Debenson
 @since 0.1
 
 */
@interface LoginRequest : JSONModel
/**
 * 用户名,不可空
Sandy's avatar
Sandy committed
1930 1931 1932
 *
 *
 */
1933
@property (nonatomic, copy) NSString *userName;
Sandy's avatar
Sandy committed
1934
/**
1935
 * 密码,不可空
Sandy's avatar
Sandy committed
1936 1937 1938
 *
 *
 */
1939
@property (nonatomic, copy) NSString *password;
Sandy's avatar
Sandy committed
1940
/**
1941
 * 当前经度 ,可空
Sandy's avatar
Sandy committed
1942 1943 1944
 *
 *
 */
1945
@property (nonatomic, copy) NSString *longitude;
Sandy's avatar
Sandy committed
1946
/**
1947
 * 当前纬度 ,可空
Sandy's avatar
Sandy committed
1948 1949 1950
 *
 *
 */
1951 1952 1953 1954 1955
@property (nonatomic, copy) NSString *latitude;
@end /* interface LoginRequest */



Sandy's avatar
Sandy committed
1956
/**
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
 *  查询结果。
 
 <br>
 查询结果基类, 具体结果集合由子类定义。
 
 @author Debenson
 @since 0.0.1
 
 */
@interface RsQueryResult : JSONModel
/**
 * 分页数据
Sandy's avatar
Sandy committed
1969 1970 1971
 *
 *
 */
1972
@property (nonatomic, strong) QueryResultPaging *paging;
Sandy's avatar
Sandy committed
1973
/**
1974
 * 当前页数
Sandy's avatar
Sandy committed
1975 1976 1977
 *
 *
 */
1978
@property (nonatomic, assign) NSInteger page;
Sandy's avatar
Sandy committed
1979
/**
1980
 * 每页记录数
Sandy's avatar
Sandy committed
1981 1982 1983
 *
 *
 */
1984
@property (nonatomic, assign) NSInteger pageSize;
Sandy's avatar
Sandy committed
1985
/**
1986
 * 总页数
Sandy's avatar
Sandy committed
1987 1988 1989
 *
 *
 */
1990
@property (nonatomic, assign) NSInteger pageCount;
Sandy's avatar
Sandy committed
1991
/**
1992
 * 总记录数
Sandy's avatar
Sandy committed
1993 1994 1995
 *
 *
 */
1996 1997
@property (nonatomic, assign) long long recordCount;
@end /* interface RsQueryResult */
Sandy's avatar
Sandy committed
1998 1999 2000



2001
/**
2002
 *  查询定义。
2003
 
2004 2005 2006 2007
 <br>
 查询定义的基类,具体查询条件由子类实现。
 
 @author Debenson
2008
 @since 0.1
Sandy's avatar
Sandy committed
2009
 
2010
 */
2011
@interface QueryDefinition : JSONModel
Sandy's avatar
Sandy committed
2012
/**
2013 2014
 * 排序条件
 * @see QueryOrder
Sandy's avatar
Sandy committed
2015
 *
2016
 */
2017
@property (nonatomic, strong) NSArray<QueryOrder> *orders;
Sandy's avatar
Sandy committed
2018
/**
2019
 * 页数,表示查询第几页
Sandy's avatar
Sandy committed
2020 2021
 *
 *
2022 2023 2024 2025 2026
 */
@property (nonatomic, assign) NSInteger pageNumber;
/**
 * 每页的记录数,传0表示查询所有数据不分页
 *
Sandy's avatar
Sandy committed
2027
 *
2028
 */
2029 2030
@property (nonatomic, assign) NSInteger pageSize;
@end /* interface QueryDefinition */
2031 2032 2033 2034



/**
2035
 *  账户订单查询。
2036
 
2037 2038
 @author liyang
 @since 0.1
2039 2040
 
 */
2041
@interface ProductOrderQueryDefintion : QueryDefinition
Sandy's avatar
Sandy committed
2042
/**
2043
 * 加油员Id
Sandy's avatar
Sandy committed
2044 2045
 *
 *
2046
 */
2047
@property (nonatomic, copy) NSString *userId;
Sandy's avatar
Sandy committed
2048 2049 2050 2051
/**
 *
 *
 *
2052
 */
2053
@property (nonatomic, copy) NSString *billNumberLike;
2054
/**
Sandy's avatar
Sandy committed
2055 2056 2057
 *
 *
 *
2058
 */
2059
@property (nonatomic, copy) NSString *endDate;
Sandy's avatar
Sandy committed
2060 2061 2062 2063
/**
 *
 *
 *
2064
 */
2065
@property (nonatomic, copy) NSString *state;
Sandy's avatar
Sandy committed
2066 2067 2068 2069
/**
 *
 *
 *
2070
 */
2071
@property (nonatomic, copy) NSString *beginDate;
Sandy's avatar
Sandy committed
2072
/**
2073
 * 商户ID
Sandy's avatar
Sandy committed
2074 2075
 *
 *
2076
 */
2077 2078
@property (nonatomic, copy) NSString *merchantId;
@end /* interface ProductOrderQueryDefintion */
2079 2080 2081 2082



/**
Sandy's avatar
Sandy committed
2083
 *  系统用户父类表
2084 2085
 
 @author 张代浩
Sandy's avatar
Sandy committed
2086
 
2087
 */
Sandy's avatar
Sandy committed
2088
@interface TSBaseUser : IdEntity
Sandy's avatar
Sandy committed
2089
/**
Sandy's avatar
Sandy committed
2090
 *
Sandy's avatar
Sandy committed
2091 2092
 *
 *
2093
 */
Sandy's avatar
Sandy committed
2094
@property (nonatomic, copy) NSString *userType;
Sandy's avatar
Sandy committed
2095
/**
2096
 * (no documentation provided)
Sandy's avatar
Sandy committed
2097 2098
 *
 *
2099
 */
Sandy's avatar
Sandy committed
2100
@property (nonatomic, copy) NSString *departid;
Sandy's avatar
Sandy committed
2101
/**
2102
 * (no documentation provided)
Sandy's avatar
Sandy committed
2103 2104
 *
 *
2105
 */
Sandy's avatar
Sandy committed
2106
@property (nonatomic, strong) NSData *signature;
Sandy's avatar
Sandy committed
2107
/**
2108
 * (no documentation provided)
Sandy's avatar
Sandy committed
2109
 *
Sandy's avatar
Sandy committed
2110
 *
2111
 */
Sandy's avatar
Sandy committed
2112
@property (nonatomic, copy) NSString *browser;
Sandy's avatar
Sandy committed
2113
/**
2114
 * (no documentation provided)
Sandy's avatar
Sandy committed
2115 2116
 *
 *
2117
 */
Sandy's avatar
Sandy committed
2118
@property (nonatomic, copy) NSString *userKey;
Sandy's avatar
Sandy committed
2119 2120 2121 2122 2123
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2124
@property (nonatomic, assign) short status;
Sandy's avatar
Sandy committed
2125 2126 2127 2128 2129
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2130
@property (nonatomic, assign) short activitiSync;
Sandy's avatar
Sandy committed
2131 2132 2133 2134 2135
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2136
@property (nonatomic, copy) NSString *password;
Sandy's avatar
Sandy committed
2137 2138 2139 2140 2141
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2142
@property (nonatomic, copy) NSString *userName;
Sandy's avatar
Sandy committed
2143
/**
Sandy's avatar
Sandy committed
2144
 * (no documentation provided)
Sandy's avatar
Sandy committed
2145 2146 2147
 *
 *
 */
Sandy's avatar
Sandy committed
2148
@property (nonatomic, copy) NSString *realName;
Sandy's avatar
Sandy committed
2149 2150 2151 2152 2153
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2154
@property (nonatomic, strong) TSDepart *currentDepart;
Sandy's avatar
Sandy committed
2155 2156
/**
 * (no documentation provided)
Sandy's avatar
Sandy committed
2157
 * @see TSUserOrg
Sandy's avatar
Sandy committed
2158 2159
 *
 */
Sandy's avatar
Sandy committed
2160
@property (nonatomic, strong) NSArray<TSUserOrg> *userOrgList;
Sandy's avatar
Sandy committed
2161 2162 2163 2164 2165
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177
@property (nonatomic, assign) short deleteFlag;
@end /* interface TSBaseUser */



/**
 *  部门机构表
 
 @author 张代浩
 
 */
@interface TSDepart : IdEntity
Sandy's avatar
Sandy committed
2178 2179 2180 2181 2182
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2183
@property (nonatomic, strong) TSDepart *TSPDepart;
Sandy's avatar
Sandy committed
2184 2185 2186 2187 2188
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2189
@property (nonatomic, copy) NSString *departname;
Sandy's avatar
Sandy committed
2190 2191 2192 2193 2194
/**
 * (no documentation provided)
 *
 *
 */
Sandy's avatar
Sandy committed
2195
@property (nonatomic, copy) NSString *fdescription;
Sandy's avatar
Sandy committed
2196
/**
2197
 * (no documentation provided)
Sandy's avatar
Sandy committed
2198
 * @see TSDepart
Sandy's avatar
Sandy committed
2199
 *
2200
 */
Sandy's avatar
Sandy committed
2201
@property (nonatomic, strong) NSArray<TSDepart> *TSDeparts;
Sandy's avatar
Sandy committed
2202
/**
2203
 * (no documentation provided)
Sandy's avatar
Sandy committed
2204 2205
 *
 *
2206
 */
Sandy's avatar
Sandy committed
2207
@property (nonatomic, copy) NSString *orgCode;
Sandy's avatar
Sandy committed
2208
/**
2209
 * (no documentation provided)
Sandy's avatar
Sandy committed
2210 2211
 *
 *
2212
 */
Sandy's avatar
Sandy committed
2213
@property (nonatomic, copy) NSString *orgType;
Sandy's avatar
Sandy committed
2214
/**
2215
 * (no documentation provided)
Sandy's avatar
Sandy committed
2216 2217
 *
 *
2218
 */
Sandy's avatar
Sandy committed
2219
@property (nonatomic, copy) NSString *mobile;
2220
/**
Sandy's avatar
Sandy committed
2221
 * (no documentation provided)
Sandy's avatar
Sandy committed
2222
 *
Sandy's avatar
Sandy committed
2223
 *
2224
 */
Sandy's avatar
Sandy committed
2225
@property (nonatomic, copy) NSString *fax;
Sandy's avatar
Sandy committed
2226 2227 2228 2229
/**
 * (no documentation provided)
 *
 *
2230
 */
Sandy's avatar
Sandy committed
2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242
@property (nonatomic, copy) NSString *address;
@end /* interface TSDepart */



/**
 *  订单查询结果。
 
 @author liyang
 @since 0.1
 
 */
2243
@interface ProductOrderQueryResult : RsQueryResult
Sandy's avatar
Sandy committed
2244 2245
/**
 * 查询结果集合
Sandy's avatar
Sandy committed
2246
 * @see ProductOrderEntity
Sandy's avatar
Sandy committed
2247 2248
 *
 */
Sandy's avatar
Sandy committed
2249
@property (nonatomic, strong) NSArray<ProductOrderEntity> *records;
2250
@end /* interface ProductOrderQueryResult */
2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263



/**
 *  用户-组织机构 实体
 <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>
Sandy's avatar
Sandy committed
2264
 
2265
 @author 张国明
Sandy's avatar
Sandy committed
2266
 
2267 2268
 */
@interface TSUserOrg : IdEntity
Sandy's avatar
Sandy committed
2269
/**
2270
 * (no documentation provided)
Sandy's avatar
Sandy committed
2271 2272
 *
 *
2273 2274
 */
@property (nonatomic, strong) TSUser *tsUser;
Sandy's avatar
Sandy committed
2275
/**
2276
 * (no documentation provided)
Sandy's avatar
Sandy committed
2277 2278
 *
 *
2279 2280 2281 2282 2283 2284
 */
@property (nonatomic, strong) TSDepart *tsDepart;
@end /* interface TSUserOrg */



Sandy's avatar
Sandy committed
2285
/**
2286
 *  订单查询结果。
Sandy's avatar
Sandy committed
2287
 
2288 2289
 @author liyang
 @since 0.1
Sandy's avatar
Sandy committed
2290 2291
 
 */
2292
@interface OrderQueryResult : RsQueryResult
Sandy's avatar
Sandy committed
2293
/**
2294 2295
 * 查询结果集合
 * @see OrderEntity
Sandy's avatar
Sandy committed
2296
 *
2297
 */
2298
@property (nonatomic, strong) NSArray<OrderEntity> *records;
Sandy's avatar
Sandy committed
2299 2300 2301 2302
/**
 *
 *
 *
Sandy's avatar
Sandy committed
2303
 */
2304 2305 2306 2307 2308
@property (nonatomic, strong) TradeStatisticsResult *total;
@end /* interface OrderQueryResult */



Sandy's avatar
Sandy committed
2309
/**
2310 2311 2312 2313 2314
 *  账户流水查询。
 
 @author liyang
 @since 0.1
 
Sandy's avatar
Sandy committed
2315
 */
2316
@interface WithdrawQueryDefintion : QueryDefinition
Sandy's avatar
Sandy committed
2317
/**
2318
 * 加油员Id
Sandy's avatar
Sandy committed
2319 2320
 *
 *
2321
 */
2322
@property (nonatomic, copy) NSString *userId;
Sandy's avatar
Sandy committed
2323
/**
2324
 * 用户名称类似于
Sandy's avatar
Sandy committed
2325 2326
 *
 *
Sandy's avatar
Sandy committed
2327
 */
2328
@property (nonatomic, copy) NSString *userNameLike;
Sandy's avatar
Sandy committed
2329 2330 2331 2332
/**
 *
 *
 *
Sandy's avatar
Sandy committed
2333
 */
2334
@property (nonatomic, copy) NSString *billNumberLike;
Sandy's avatar
Sandy committed
2335 2336 2337 2338
/**
 *
 *
 *
2339
 */
2340
@property (nonatomic, copy) NSString *endDate;
Sandy's avatar
Sandy committed
2341 2342 2343 2344
/**
 *
 *
 *
Sandy's avatar
Sandy committed
2345
 */
2346
@property (nonatomic, copy) NSString *state;
Sandy's avatar
Sandy committed
2347 2348 2349 2350 2351
/**
 *
 *
 *
 */
2352 2353 2354 2355 2356
@property (nonatomic, copy) NSString *beginDate;
@end /* interface WithdrawQueryDefintion */



Sandy's avatar
Sandy committed
2357
/**
2358 2359 2360 2361 2362
 *  账户流水查询。
 
 @author liyang
 @since 0.1
 
Sandy's avatar
Sandy committed
2363
 */
2364
@interface OrderQueryDefintion : QueryDefinition
Sandy's avatar
Sandy committed
2365
/**
2366
 * 加油员Id
Sandy's avatar
Sandy committed
2367 2368 2369
 *
 *
 */
2370
@property (nonatomic, copy) NSString *userId;
Sandy's avatar
Sandy committed
2371
/**
2372
 * 用户名称类似于
Sandy's avatar
Sandy committed
2373 2374 2375
 *
 *
 */
2376
@property (nonatomic, copy) NSString *userNameLike;
Sandy's avatar
Sandy committed
2377 2378 2379 2380 2381
/**
 *
 *
 *
 */
2382
@property (nonatomic, copy) NSString *billNumberLike;
Sandy's avatar
Sandy committed
2383
/**
2384
 *
Sandy's avatar
Sandy committed
2385 2386 2387
 *
 *
 */
2388
@property (nonatomic, copy) NSString *endDate;
Sandy's avatar
Sandy committed
2389
/**
2390
 *
Sandy's avatar
Sandy committed
2391 2392 2393
 *
 *
 */
2394
@property (nonatomic, copy) NSString *state;
Sandy's avatar
Sandy committed
2395
/**
2396
 *
Sandy's avatar
Sandy committed
2397 2398 2399
 *
 *
 */
2400
@property (nonatomic, copy) NSString *beginDate;
Sandy's avatar
Sandy committed
2401
/**
2402
 *
Sandy's avatar
Sandy committed
2403 2404 2405
 *
 *
 */
2406 2407 2408 2409 2410
@property (nonatomic, copy) NSString *checkState;
@end /* interface OrderQueryDefintion */



Sandy's avatar
Sandy committed
2411
/**
2412 2413 2414 2415 2416
 *  订单查询结果。
 
 @author liyang
 @since 0.1
 
Sandy's avatar
Sandy committed
2417
 */
2418
@interface WithdrawQueryResult : RsQueryResult
Sandy's avatar
Sandy committed
2419
/**
2420 2421
 * 查询结果集合
 * @see DrawCashBillEntity
Sandy's avatar
Sandy committed
2422 2423
 *
 */
2424 2425 2426 2427 2428
@property (nonatomic, strong) NSArray<DrawCashBillEntity> *records;
@end /* interface WithdrawQueryResult */



Sandy's avatar
Sandy committed
2429
/**
2430 2431 2432 2433 2434
 *  订单查询结果。
 
 @author liyang
 @since 0.1
 
Sandy's avatar
Sandy committed
2435
 */
2436
@interface AccountHistoryQueryResult : RsQueryResult
Sandy's avatar
Sandy committed
2437
/**
2438 2439
 * 查询结果集合
 * @see StationUserAcctHisEntity
Sandy's avatar
Sandy committed
2440 2441
 *
 */
2442 2443 2444 2445 2446
@property (nonatomic, strong) NSArray<StationUserAcctHisEntity> *records;
@end /* interface AccountHistoryQueryResult */



Sandy's avatar
Sandy committed
2447
/**
2448 2449 2450 2451 2452
 *  账户流水查询。
 
 @author liyang
 @since 0.1
 
Sandy's avatar
Sandy committed
2453
 */
2454
@interface AccountHistoryQueryDefintion : QueryDefinition
Sandy's avatar
Sandy committed
2455
/**
2456
 * 加油员Id
Sandy's avatar
Sandy committed
2457 2458 2459
 *
 *
 */
2460
@property (nonatomic, copy) NSString *userId;
Sandy's avatar
Sandy committed
2461
/**
2462
 * 起始时间
Sandy's avatar
Sandy committed
2463 2464 2465
 *
 *
 */
2466
@property (nonatomic, copy) NSString *beginDate;
Sandy's avatar
Sandy committed
2467 2468 2469 2470 2471
/**
 *
 *
 *
 */
2472 2473
@property (nonatomic, copy) NSString *endDate;
@end /* interface AccountHistoryQueryDefintion */
2474 2475 2476



Sandy's avatar
Sandy committed
2477
/**
2478 2479 2480 2481 2482
 *  @Title: Entity
 @Description: 油站
 @author onlineGenerator
 @date 2016-11-17 20:47:03
 @version V1.0
Sandy's avatar
Sandy committed
2483 2484 2485
 
 
 */
2486
@interface StationEntity : TSDepart
Sandy's avatar
Sandy committed
2487
/**
2488
 * 方法: 取得创建人名称
Sandy's avatar
Sandy committed
2489 2490 2491
 *
 *
 */
2492
@property (nonatomic, copy) NSString *createName;
Sandy's avatar
Sandy committed
2493
/**
2494
 * 方法: 取得创建人登录名称
Sandy's avatar
Sandy committed
2495 2496 2497
 *
 *
 */
2498
@property (nonatomic, copy) NSString *createBy;
Sandy's avatar
Sandy committed
2499
/**
2500
 * 方法: 取得创建日期
Sandy's avatar
Sandy committed
2501 2502 2503
 *
 *
 */
2504
@property (nonatomic, copy) NSString *createDate;
Sandy's avatar
Sandy committed
2505
/**
2506
 * 方法: 取得更新人名称
Sandy's avatar
Sandy committed
2507 2508 2509
 *
 *
 */
2510
@property (nonatomic, copy) NSString *updateName;
Sandy's avatar
Sandy committed
2511
/**
2512
 * 方法: 取得更新人登录名称
Sandy's avatar
Sandy committed
2513 2514 2515
 *
 *
 */
2516
@property (nonatomic, copy) NSString *updateBy;
Sandy's avatar
Sandy committed
2517
/**
2518
 * 方法: 取得更新日期
Sandy's avatar
Sandy committed
2519 2520 2521
 *
 *
 */
2522
@property (nonatomic, copy) NSString *updateDate;
Sandy's avatar
Sandy committed
2523
/**
2524
 * 方法: 取得所属部门
Sandy's avatar
Sandy committed
2525 2526 2527
 *
 *
 */
2528
@property (nonatomic, copy) NSString *sysOrgCode;
2529
/**
2530 2531 2532
 * 方法: 取得所属公司
 *
 *
Sandy's avatar
Sandy committed
2533
 */
2534
@property (nonatomic, copy) NSString *sysCompanyCode;
Sandy's avatar
Sandy committed
2535
/**
2536
 * 方法: 取得省市
Sandy's avatar
Sandy committed
2537 2538 2539
 *
 *
 */
2540
@property (nonatomic, copy) NSString *province;
Sandy's avatar
Sandy committed
2541
/**
2542
 * 方法: 取得市区
Sandy's avatar
Sandy committed
2543 2544 2545
 *
 *
 */
2546
@property (nonatomic, copy) NSString *city;
Sandy's avatar
Sandy committed
2547
/**
2548
 * 方法: 取得区县
Sandy's avatar
Sandy committed
2549 2550 2551
 *
 *
 */
2552
@property (nonatomic, copy) NSString *county;
Sandy's avatar
Sandy committed
2553
/**
2554
 * 方法: 取得品牌
Sandy's avatar
Sandy committed
2555 2556 2557
 *
 *
 */
2558
@property (nonatomic, copy) NSString *brand;
Sandy's avatar
Sandy committed
2559
/**
2560
 * 方法: 取得经度
Sandy's avatar
Sandy committed
2561 2562 2563
 *
 *
 */
2564
@property (nonatomic, copy) NSString *longitude;
Sandy's avatar
Sandy committed
2565
/**
2566
 * 方法: 取得纬度
Sandy's avatar
Sandy committed
2567 2568 2569
 *
 *
 */
2570
@property (nonatomic, copy) NSString *latitude;
Sandy's avatar
Sandy committed
2571
/**
2572 2573 2574
 * 方法: 取得是否合作油站
 *
 *
2575
 */
2576
@property (nonatomic, copy) NSString *partner;
Sandy's avatar
Sandy committed
2577
/**
2578 2579
 * 方法: 取得服务
 *
Sandy's avatar
Sandy committed
2580
 *
2581
 */
2582
@property (nonatomic, copy) NSString *services;
2583
/**
2584 2585 2586
 * 方法: 取得评分
 *
 *
2587
 */
2588
@property (nonatomic, copy) NSString *grade;
Sandy's avatar
Sandy committed
2589
/**
2590
 * 方法: 取得备注
Sandy's avatar
Sandy committed
2591 2592
 *
 *
2593
 */
2594
@property (nonatomic, copy) NSString *remark;
Sandy's avatar
Sandy committed
2595
/**
2596
 *
Sandy's avatar
Sandy committed
2597 2598
 *
 *
2599
 */
2600
@property (nonatomic, copy) NSString *printerMachineCode;
Sandy's avatar
Sandy committed
2601 2602 2603 2604
/**
 *
 *
 *
2605
 */
2606 2607
@property (nonatomic, copy) NSString *printerKey;
@end /* interface StationEntity */
2608 2609 2610 2611 2612 2613 2614



/**
 *  系统用户表
 
 @author 张代浩
Sandy's avatar
Sandy committed
2615
 
2616 2617
 */
@interface TSUser : TSBaseUser
Sandy's avatar
Sandy committed
2618
/**
2619
 * (no documentation provided)
Sandy's avatar
Sandy committed
2620 2621
 *
 *
2622 2623
 */
@property (nonatomic, copy) NSString *signatureFile;
Sandy's avatar
Sandy committed
2624
/**
2625
 * (no documentation provided)
Sandy's avatar
Sandy committed
2626 2627
 *
 *
2628 2629
 */
@property (nonatomic, copy) NSString *mobilePhone;
Sandy's avatar
Sandy committed
2630
/**
2631
 * (no documentation provided)
Sandy's avatar
Sandy committed
2632 2633
 *
 *
2634 2635
 */
@property (nonatomic, copy) NSString *officePhone;
Sandy's avatar
Sandy committed
2636
/**
2637
 * (no documentation provided)
Sandy's avatar
Sandy committed
2638 2639
 *
 *
2640 2641
 */
@property (nonatomic, copy) NSString *email;
Sandy's avatar
Sandy committed
2642
/**
2643
 * 方法: 取得java.util.Date
Sandy's avatar
Sandy committed
2644 2645
 *
 *
2646 2647
 */
@property (nonatomic, copy) NSString *createDate;
Sandy's avatar
Sandy committed
2648
/**
2649
 * 方法: 取得java.lang.String
Sandy's avatar
Sandy committed
2650 2651
 *
 *
2652 2653
 */
@property (nonatomic, copy) NSString *createBy;
Sandy's avatar
Sandy committed
2654
/**
2655
 * 方法: 取得java.lang.String
Sandy's avatar
Sandy committed
2656 2657
 *
 *
2658 2659
 */
@property (nonatomic, copy) NSString *createName;
Sandy's avatar
Sandy committed
2660
/**
2661
 * 方法: 取得java.util.Date
Sandy's avatar
Sandy committed
2662 2663
 *
 *
2664 2665
 */
@property (nonatomic, copy) NSString *updateDate;
Sandy's avatar
Sandy committed
2666
/**
2667
 * 方法: 取得java.lang.String
Sandy's avatar
Sandy committed
2668 2669
 *
 *
2670 2671
 */
@property (nonatomic, copy) NSString *updateBy;
Sandy's avatar
Sandy committed
2672
/**
2673
 * 方法: 取得java.lang.String
Sandy's avatar
Sandy committed
2674 2675
 *
 *
2676 2677 2678 2679 2680 2681 2682
 */
@property (nonatomic, copy) NSString *updateName;
@end /* interface TSUser */



/**
2683 2684 2685
 *
 @Title: Entity
 @Description: 商户
2686
 @author onlineGenerator
2687
 @date 2017-03-09 13:21:33
2688
 @version V1.0
Sandy's avatar
Sandy committed
2689 2690
 
 
2691
 */
2692
@interface MerchantEntity : TSDepart
Sandy's avatar
Sandy committed
2693
/**
2694
 * 创建人名称
Sandy's avatar
Sandy committed
2695 2696
 *
 *
2697 2698
 */
@property (nonatomic, copy) NSString *createName;
Sandy's avatar
Sandy committed
2699
/**
2700
 * 创建人登录名称
Sandy's avatar
Sandy committed
2701 2702
 *
 *
2703 2704
 */
@property (nonatomic, copy) NSString *createBy;
Sandy's avatar
Sandy committed
2705
/**
2706
 * 创建日期
Sandy's avatar
Sandy committed
2707 2708
 *
 *
2709 2710
 */
@property (nonatomic, copy) NSString *createDate;
Sandy's avatar
Sandy committed
2711
/**
2712
 * 更新人名称
Sandy's avatar
Sandy committed
2713 2714
 *
 *
2715 2716
 */
@property (nonatomic, copy) NSString *updateName;
Sandy's avatar
Sandy committed
2717
/**
2718
 * 更新人登录名称
Sandy's avatar
Sandy committed
2719 2720
 *
 *
2721 2722
 */
@property (nonatomic, copy) NSString *updateBy;
Sandy's avatar
Sandy committed
2723
/**
2724
 * 更新日期
Sandy's avatar
Sandy committed
2725 2726
 *
 *
2727 2728
 */
@property (nonatomic, copy) NSString *updateDate;
Sandy's avatar
Sandy committed
2729
/**
2730
 * 所属部门
Sandy's avatar
Sandy committed
2731 2732
 *
 *
2733 2734
 */
@property (nonatomic, copy) NSString *sysOrgCode;
Sandy's avatar
Sandy committed
2735
/**
2736
 * 所属公司
Sandy's avatar
Sandy committed
2737 2738
 *
 *
2739 2740
 */
@property (nonatomic, copy) NSString *sysCompanyCode;
Sandy's avatar
Sandy committed
2741
/**
2742
 * 纬度
Sandy's avatar
Sandy committed
2743 2744
 *
 *
2745 2746
 */
@property (nonatomic, copy) NSString *latitude;
Sandy's avatar
Sandy committed
2747
/**
2748
 * 经度
Sandy's avatar
Sandy committed
2749 2750
 *
 *
2751
 */
2752
@property (nonatomic, copy) NSString *longtitude;
Sandy's avatar
Sandy committed
2753
/**
2754
 * 联系方式
Sandy's avatar
Sandy committed
2755 2756
 *
 *
2757
 */
2758
@property (nonatomic, copy) NSString *telephone;
Sandy's avatar
Sandy committed
2759
/**
2760
 * 附件id
Sandy's avatar
Sandy committed
2761 2762
 *
 *
2763
 */
2764
@property (nonatomic, copy) NSString *attachmentId;
Sandy's avatar
Sandy committed
2765
/**
2766
 * 邮箱
Sandy's avatar
Sandy committed
2767 2768
 *
 *
2769
 */
2770
@property (nonatomic, copy) NSString *email;
Sandy's avatar
Sandy committed
2771
/**
2772
 * 状态
Sandy's avatar
Sandy committed
2773 2774
 *
 *
2775
 */
2776 2777
@property (nonatomic, copy) NSString *state;
@end /* interface MerchantEntity */
2778 2779 2780 2781 2782 2783 2784 2785 2786



/**
 *  @Title: Entity
 @Description: 油站员工
 @author onlineGenerator
 @date 2016-11-17 19:43:01
 @version V1.0
Sandy's avatar
Sandy committed
2787 2788
 
 
2789 2790
 */
@interface StationUserEntity : TSUser
Sandy's avatar
Sandy committed
2791 2792 2793 2794 2795 2796 2797
/**
 * openId
 *
 *
 */
@property (nonatomic, copy) NSString *wxOpenId;
/**
2798
 * 方法: 取得工号
Sandy's avatar
Sandy committed
2799 2800
 *
 *
2801 2802 2803 2804 2805
 */
@property (nonatomic, copy) NSString *worknum;
@end /* interface StationUserEntity */


2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825

/**
 *  @Title: Entity
 @Description: 商户人员
 @author onlineGenerator
 @date 2017-03-21 09:34:27
 @version V1.0
 
 
 */
@interface MerchantUserEntity : TSUser
/**
 * 方法: 取得工号
 *
 *
 */
@property (nonatomic, copy) NSString *worknum;
@end /* interface MerchantUserEntity */