package common.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class PackageBase { private Long id; private String packageName; private String platform; private int sort; private int status; private String type; @Id @GeneratedValue public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getPackageName() { return packageName; } public void setPackageName(String packageName) { this.packageName = packageName; } public String getPlatform() { return platform; } public void setPlatform(String platform) { this.platform = platform; } public int getSort() { return sort; } public void setSort(int sort) { this.sort = sort; } public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } public String getType() { return type; } public void setType(String type) { this.type = type; } }