package com.hfkj.model; public class OpenAccountRequestDto { String method; String mobile; String source; public String getMethod() { return method; } public void setMethod(String method) { this.method = method; } public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } public String getSource() { return source; } public void setSource(String source) { this.source = source; } }