¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.lf.server.entity.ctrl; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ç¨æ·æ´æ°ç±» |
| | | * @author WWW |
| | | */ |
| | | public class UserUpdateEntity implements Serializable { |
| | | private static final long serialVersionUID = 8390219588267518254L; |
| | | |
| | | private String adminPwd; |
| | | |
| | | private String newPwd; |
| | | |
| | | private List<Integer> ids; |
| | | |
| | | public UserUpdateEntity() { |
| | | |
| | | } |
| | | |
| | | public String getAdminPwd() { |
| | | return adminPwd; |
| | | } |
| | | |
| | | public void setAdminPwd(String adminPwd) { |
| | | this.adminPwd = adminPwd; |
| | | } |
| | | |
| | | public String getNewPwd() { |
| | | return newPwd; |
| | | } |
| | | |
| | | public void setNewPwd(String newPwd) { |
| | | this.newPwd = newPwd; |
| | | } |
| | | |
| | | public List<Integer> getIds() { |
| | | return ids; |
| | | } |
| | | |
| | | public void setIds(List<Integer> ids) { |
| | | this.ids = ids; |
| | | } |
| | | } |