com.airlenet.repo.domain.Sortable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-repo Show documentation
Show all versions of play-repo Show documentation
The Repository of Play Framework.
The newest version!
package com.airlenet.repo.domain;
/**
* 默认根据sortNo大小进行升序排序
*
* @作者 airlenet
* @博客 http://ken.whenling.com
* @创建时间 2016年2月3日 下午12:59:31
*/
public interface Sortable {
Integer getSortNo();
void setSortNo(Integer sortNo);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy