Blame view

src/com/ectrip/cyt/response/LoginResponse.java 434 Bytes
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  package com.ectrip.cyt.response;
  
  
  import com.ectrip.cyt.base.Response;
  
  /**
   * @author wenqiang.luo date:2016/11/1
   */
  public class LoginResponse extends Response {
  
      private Long accountId;
  
      //get and set//////////////////////////////////////////////////////////////
  
      public Long getAccountId() {
          return accountId;
      }
  
      public void setAccountId(Long accountId) {
          this.accountId = accountId;
      }
  }