package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class AccountType implements Serializable {
|
|
@Expose
|
String portrait;
|
@Expose
|
String helpUrl;
|
|
public String getPortrait() {
|
return portrait;
|
}
|
|
public void setPortrait(String portrait) {
|
this.portrait = portrait;
|
}
|
|
public String getHelpUrl() {
|
return helpUrl;
|
}
|
|
public void setHelpUrl(String helpUrl) {
|
this.helpUrl = helpUrl;
|
}
|
}
|