package com.tejia.lijin.app.entity.common;
|
|
public class WXXCXJumpInfo {
|
private String userName;
|
private String path;
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
}
|