Blame view

src/main/java/com/rnt/model/common/WXUser.java 853 Bytes
e80df919   atao   init
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
  package com.rnt.model.common;
  
  import java.io.Serializable;
  
  /**
   * Copyright: Copyright (c) 2017  zteits
   *
   * @ClassName: com.rnt.model.common
   * @Description:
   * @version: v1.0.0
   * @author: atao
   * @date: 2017/6/8   下午4:12
   * Modification History:
   * Date         Author          Version      Description
   * ---------------------------------------------------------*
   * 2017/6/8      atao          v1.0.0          创建
   */
  public class WXUser implements Serializable {
      //客户ID
      private String custId;
      //微信openID
      private String openId;
  
      public String getCustId() {
          return custId;
      }
  
      public void setCustId(String custId) {
          this.custId = custId;
      }
  
      public String getOpenId() {
          return openId;
      }
  
      public void setOpenId(String openId) {
          this.openId = openId;
      }
  }