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; } }