com.quhaodian.data.rest.domain.NamePage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discover-hibernate-common Show documentation
Show all versions of discover-hibernate-common Show documentation
discover-hibernate_common is a lib for hibernate
package com.quhaodian.data.rest.domain;
import java.util.List;
/**
* 简单返回名字+id的集合
*
* @author 73552
*/
public class NamePage extends AbstractVo {
private List list;
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
}