Blame view

src/com/ectrip/cyt/response/PassengerInfosBean.java 1.2 KB
98330c42   杜方   1、畅游通核销app:新增主界面关...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  package com.ectrip.cyt.response;
  
  /**
   * 作者:dufang on 2023/7/3 15:31
   */
  public class PassengerInfosBean {
      // "credentials": "11010119900307029X",
      // "credentialsType": "ID_CARD",
      // "name": "11",
      // "phone": "13544041798",
      // "voucher": "PMS_CEC6C3D9C7D0BABABBBCC5C4B2CE"
      private String credentials;
      private String credentialsType;
      private String name;
      private String phone;
      private String voucher;
  
      public String getCredentials() {
          return credentials;
      }
  
      public void setCredentials(String credentials) {
          this.credentials = credentials;
      }
  
      public String getCredentialsType() {
          return credentialsType;
      }
  
      public void setCredentialsType(String credentialsType) {
          this.credentialsType = credentialsType;
      }
  
      public String getName() {
          return name;
      }
  
      public void setName(String name) {
          this.name = name;
      }
  
      public String getPhone() {
          return phone;
      }
  
      public void setPhone(String phone) {
          this.phone = phone;
      }
  
      public String getVoucher() {
          return voucher;
      }
  
      public void setVoucher(String voucher) {
          this.voucher = voucher;
      }
  }