package com.hjx.personalcenter.model; /** * Created by h on 2017/8/18. */ public class CardInfo { /** * customerName : FuQiang * createTime : 2017-08-01 13:21:00 * mobilePhone : 13162530008 * buyTime : 2017-08-01 12:23:50 * productModel : GT-N7100 * buyAddress : HaojixingZhengZhou * customerAddress : HeNamZhengSheng * alterSaleCall : 4022210201 * macAddress : 00:22:F4:93:7A:B * deviceNumber : A909A90997011012 */ private String customerName; private String createTime; private String mobilePhone; private String buyTime; private String productModel; private String buyAddress; private String customerAddress; private String alterSaleCall; private String macAddress; private String deviceNumber; public String getCustomerName() { return customerName; } public void setCustomerName(String customerName) { this.customerName = customerName; } public String getCreateTime() { return createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getMobilePhone() { return mobilePhone; } public void setMobilePhone(String mobilePhone) { this.mobilePhone = mobilePhone; } public String getBuyTime() { return buyTime; } public void setBuyTime(String buyTime) { this.buyTime = buyTime; } public String getProductModel() { return productModel; } public void setProductModel(String productModel) { this.productModel = productModel; } public String getBuyAddress() { return buyAddress; } public void setBuyAddress(String buyAddress) { this.buyAddress = buyAddress; } public String getCustomerAddress() { return customerAddress; } public void setCustomerAddress(String customerAddress) { this.customerAddress = customerAddress; } public String getAlterSaleCall() { return alterSaleCall; } public void setAlterSaleCall(String alterSaleCall) { this.alterSaleCall = alterSaleCall; } public String getMacAddress() { return macAddress; } public void setMacAddress(String macAddress) { this.macAddress = macAddress; } public String getDeviceNumber() { return deviceNumber; } public void setDeviceNumber(String deviceNumber) { this.deviceNumber = deviceNumber; } }