com.haoxuer.discover.data.entity.SortEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discover-common-hibernate Show documentation
Show all versions of discover-common-hibernate Show documentation
discover-hibernate_common is a lib for hibernate
package com.haoxuer.discover.data.entity;
import javax.persistence.MappedSuperclass;
@MappedSuperclass
public class SortEntity extends AbstractEntity {
private Integer sortNum;
public Integer getSortNum() {
return sortNum;
}
public void setSortNum(Integer sortNum) {
this.sortNum = sortNum;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy