You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
445 B
30 lines
445 B
package com.letian.modules.base.entity;
|
|
|
|
public class AccessSiteData {
|
|
/**
|
|
*
|
|
*/
|
|
private String userID;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String site;
|
|
|
|
public String getUserID() {
|
|
return userID;
|
|
}
|
|
|
|
public void setUserID(String userID) {
|
|
this.userID = userID;
|
|
}
|
|
|
|
public String getSite() {
|
|
return site;
|
|
}
|
|
|
|
public void setSite(String site) {
|
|
this.site = site;
|
|
}
|
|
}
|
|
|