30 lines
399 B
Plaintext
30 lines
399 B
Plaintext
package com.nationalelectric.greenH5.po;
|
|
|
|
public class UserVo {
|
|
private String userId;
|
|
|
|
//模块类型
|
|
private String modulType;
|
|
|
|
|
|
|
|
public String getModulType() {
|
|
return modulType;
|
|
}
|
|
|
|
public void setModulType(String modulType) {
|
|
this.modulType = modulType;
|
|
}
|
|
|
|
public String getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(String userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
|
|
|
|
}
|