Commit 8af04bad by chongli

670合并669删除了一个文件,重新添加

parent 675d4950
package com.ctrip.fun.common.vo.adminUser;
import com.ctrip.fun.common.vo.AbstractPagedQuery;
/**
* Created by pat on 14-5-26.
*
* @author: l_cheng@ctrip.com
* @date: 2014-05-26
*/
public class AdminUserQuery extends AbstractPagedQuery {
private Integer id;
private String userName;
private String nickName;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment