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.
25 lines
432 B
25 lines
432 B
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; |
|
} |
|
|
|
|
|
}
|
|
|