package com.fadu.app.bean.e; import com.fadu.app.bean.BaseRequest; /** * @author zhangjianbin * Desc 描述信息 * Date 2020/4/21 11:00 */ public class E748Request extends BaseRequest { private int type; // 1个人法律顾问 2企业法律顾问 private String userId; //用户id private int payType; //支付方式 1支付宝 2微信 private String ip; private String username; //联系人 private String mobile; //手机号 private String lawyerId; //律师id public String getIp() { return ip; } public void setIp(String ip) { this.ip = ip; } public int getType() { return type; } public void setType(int type) { this.type = type; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public int getPayType() { return payType; } public void setPayType(int payType) { this.payType = payType; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } public String getLawyerId() { return lawyerId; } public void setLawyerId(String lawyerId) { this.lawyerId = lawyerId; } }