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.
24 lines
457 B
24 lines
457 B
3 years ago
|
package com.fr.plugin.teshe.beans;
|
||
|
|
||
|
public class OrganUserModelExtend extends OrganUserModel{
|
||
|
private String orginId;
|
||
|
private String fullPath;
|
||
|
|
||
|
|
||
|
public void setOrginId(String orginId) {
|
||
|
this.orginId = orginId;
|
||
|
}
|
||
|
|
||
|
public void setFullPath(String fullPath) {
|
||
|
this.fullPath = fullPath;
|
||
|
}
|
||
|
|
||
|
public String getOrginId() {
|
||
|
return orginId;
|
||
|
}
|
||
|
|
||
|
public String getFullPath() {
|
||
|
return fullPath;
|
||
|
}
|
||
|
}
|