package fi.pyramus.services.entities.base; public class EducationSubtypeEntity { public EducationSubtypeEntity() { } public EducationSubtypeEntity(Long id, String name, String code, Long educationTypeId, Boolean archived) { super(); this.id = id; this.name = name; this.code = code; this.educationTypeId = educationTypeId; this.archived = archived; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public Long getEducationTypeId() { return educationTypeId; } public void setEducationTypeId(Long educationTypeId) { this.educationTypeId = educationTypeId; } public Boolean getArchived() { return archived; } public void setArchived(Boolean archived) { this.archived = archived; } private Long id; private String name; private String code; private Long educationTypeId; private Boolean archived; }