car_objc_json_client.h 43.3 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 1472
/**
 * 支付方式
 *
 *
 */
@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;
@end /* interface ProductOrderEntity */
Sandy's avatar
Sandy committed
1473 1474 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



/**
 *  @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
1623
@property (nonatomic, strong) NSNumber *total;
Sandy's avatar
Sandy committed
1624 1625 1626 1627 1628
/**
 * 方法: 取得实付金额
 *
 *
 */
Sandy's avatar
Sandy committed
1629
@property (nonatomic, strong) NSNumber *realPayTotal;
Sandy's avatar
Sandy committed
1630 1631 1632 1633 1634 1635 1636
/**
 * 方法: 取得支付时间
 *
 *
 */
@property (nonatomic, copy) NSString *payTime;
/**
Sandy's avatar
Sandy committed
1637
 * 方法: 取得支付方���
Sandy's avatar
Sandy committed
1638 1639 1640 1641 1642 1643 1644 1645 1646
 *
 *
 */
@property (nonatomic, copy) NSString *payMethod;
/**
 * 方法: 取得销售提成
 *
 *
 */
Sandy's avatar
Sandy committed
1647
@property (nonatomic, strong) NSNumber *deduct;
Sandy's avatar
Sandy committed
1648 1649 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
/**
 * 方法: 取得是否开票
 *
 *
 */
@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
1726 1727 1728 1729 1730 1731
/**
 * 对账状态
 *
 *
 */
@property (nonatomic, copy) NSString *checkState;
Sandy's avatar
Sandy committed
1732 1733 1734 1735 1736 1737
@end /* interface OrderEntity */



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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


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

/**
 *  @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 */