Blame view

src/com/ectrip/cyt/bean/DataTranfer.java 817 Bytes
07670a44   黄灿宏   畅游通核销app: 1.增加日志上...
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
  package com.ectrip.cyt.bean;
  
  /**
   * Created by lingkitho on 2017/3/2.
   */
  public class DataTranfer {
      private String data;
      private String signed;
      private String securityType = "MD5";
      private String method;
  
  
      public String getMethod() {
          return method;
      }
  
      public void setMethod(String method) {
          this.method = method;
      }
  
      public String getData() {
          return data;
      }
  
      public void setData(String data) {
          this.data = data;
      }
  
      public String getSigned() {
          return signed;
      }
  
      public void setSigned(String signed) {
          this.signed = signed;
      }
  
      public String getSecurityType() {
          return securityType;
      }
  
      public void setSecurityType(String securityType) {
          this.securityType = securityType;
      }
  }