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.
26 lines
432 B
26 lines
432 B
3 years ago
|
package com.fr.plugin.jsd9683.beans;
|
||
|
|
||
|
public class DeleteUserBean {
|
||
|
private String orgCode;
|
||
|
private String userName;
|
||
|
|
||
|
|
||
|
public void setOrgCode(String orgCode) {
|
||
|
this.orgCode = orgCode;
|
||
|
}
|
||
|
|
||
|
public void setUserName(String userName) {
|
||
|
this.userName = userName;
|
||
|
}
|
||
|
|
||
|
public String getOrgCode() {
|
||
|
return orgCode;
|
||
|
}
|
||
|
|
||
|
public String getUserName() {
|
||
|
return userName;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|