| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- package com.keao.edu.user.entity;
- import com.keao.edu.user.api.entity.Student;
- import com.keao.edu.user.enums.StudentRegistrationStatusEnum;
- import io.swagger.annotations.ApiModelProperty;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import java.math.BigDecimal;
- /**
- * 对应数据库表(exam_registration):
- */
- public class ExamRegistration {
- private Integer id;
-
- @ApiModelProperty(value = "考级项目编号")
- private Long examinationBasicId;
- @ApiModelProperty(value = "考级项目详情")
- private ExaminationBasic examinationBasic;
-
- @ApiModelProperty(value = "学员编号")
- private Integer studentId;
- @ApiModelProperty(value = "学员基本信息")
- private Student sysUser;
- @ApiModelProperty(value = "合作单位编号")
- private Integer organId;
- @ApiModelProperty(value = "合作单位信息")
- private Organization organization;
-
- @ApiModelProperty(value = "专业编号")
- private Integer subjectId;
- @ApiModelProperty(value = "专业信息")
- private Subject subject;
- @ApiModelProperty(value = "报考级别")
- private Integer level;
- @ApiModelProperty(value = "考级费用")
- private BigDecimal levelFee;
- @ApiModelProperty(value = "乐理级别")
- private Integer examMusicTheoryLevel;
- @ApiModelProperty(value = "乐理考级费用")
- private BigDecimal theoryLevelFee;
-
- @ApiModelProperty(value = "考试内容")
- private String songJson;
-
- @ApiModelProperty(value = "上次报考级别")
- private Integer lastExamLevel;
-
- @ApiModelProperty(value = "上次报考证书")
- private String lastExamCertificateUrl;
- @ApiModelProperty(value = "上次乐理级别")
- private Integer lastMusicTheoryLevel;
- @ApiModelProperty(value = "上次乐理证书")
- private String lastMusicTheoryCertificateUrl;
-
- @ApiModelProperty(value = "指导老师姓名")
- private String adviserName;
-
- @ApiModelProperty(value = "指导老师电话")
- private String adviserPhone;
- @ApiModelProperty(value = "证件号")
- private String cardNo;
- @ApiModelProperty(value = "报名状态")
- private StudentRegistrationStatusEnum status;
- @ApiModelProperty(value = "备注")
- private String memo;
- @ApiModelProperty(value = "考试内容id")
- private Long examSubjectSongId;
- @ApiModelProperty(value = "项目乐理id")
- private Integer examMusicTheoryId;
- private java.util.Date createTime;
- private java.util.Date updateTime;
- private String tenantId;
- public void setId(Integer id){
- this.id = id;
- }
-
- public Integer getId(){
- return this.id;
- }
- public Organization getOrganization() {
- return organization;
- }
- public void setOrganization(Organization organization) {
- this.organization = organization;
- }
- public StudentRegistrationStatusEnum getStatus() {
- return status;
- }
- public void setStatus(StudentRegistrationStatusEnum status) {
- this.status = status;
- }
- public Student getSysUser() {
- return sysUser;
- }
- public void setSysUser(Student sysUser) {
- this.sysUser = sysUser;
- }
- public Subject getSubject() {
- return subject;
- }
- public void setSubject(Subject subject) {
- this.subject = subject;
- }
- public Long getExaminationBasicId() {
- return examinationBasicId;
- }
- public void setExaminationBasicId(Long examinationBasicId) {
- this.examinationBasicId = examinationBasicId;
- }
- public ExaminationBasic getExaminationBasic() {
- return examinationBasic;
- }
- public void setExaminationBasic(ExaminationBasic examinationBasic) {
- this.examinationBasic = examinationBasic;
- }
- public void setStudentId(Integer studentId){
- this.studentId = studentId;
- }
-
- public Integer getStudentId(){
- return this.studentId;
- }
- public Integer getOrganId() {
- return organId;
- }
- public void setOrganId(Integer organId) {
- this.organId = organId;
- }
- public void setSubjectId(Integer subjectId){
- this.subjectId = subjectId;
- }
-
- public Integer getSubjectId(){
- return this.subjectId;
- }
-
- public void setLevel(Integer level){
- this.level = level;
- }
-
- public Integer getLevel(){
- return this.level;
- }
-
- public void setSongJson(String songJson){
- this.songJson = songJson;
- }
-
- public String getSongJson(){
- return this.songJson;
- }
-
- public void setLastExamLevel(Integer lastExamLevel){
- this.lastExamLevel = lastExamLevel;
- }
-
- public Integer getLastExamLevel(){
- return this.lastExamLevel;
- }
-
- public void setLastExamCertificateUrl(String lastExamCertificateUrl){
- this.lastExamCertificateUrl = lastExamCertificateUrl;
- }
-
- public String getLastExamCertificateUrl(){
- return this.lastExamCertificateUrl;
- }
-
- public void setAdviserName(String adviserName){
- this.adviserName = adviserName;
- }
-
- public String getAdviserName(){
- return this.adviserName;
- }
-
- public void setAdviserPhone(String adviserPhone){
- this.adviserPhone = adviserPhone;
- }
-
- public String getAdviserPhone(){
- return this.adviserPhone;
- }
- public String getCardNo() {
- return cardNo;
- }
- public void setCardNo(String cardNo) {
- this.cardNo = cardNo;
- }
- public void setCreateTime(java.util.Date createTime){
- this.createTime = createTime;
- }
-
- public java.util.Date getCreateTime(){
- return this.createTime;
- }
-
- public void setUpdateTime(java.util.Date updateTime){
- this.updateTime = updateTime;
- }
-
- public java.util.Date getUpdateTime(){
- return this.updateTime;
- }
-
- public void setTenantId(String tenantId){
- this.tenantId = tenantId;
- }
-
- public String getTenantId(){
- return this.tenantId;
- }
- public String getMemo() {
- return memo;
- }
- public void setMemo(String memo) {
- this.memo = memo;
- }
- public Long getExamSubjectSongId() {
- return examSubjectSongId;
- }
- public void setExamSubjectSongId(Long examSubjectSongId) {
- this.examSubjectSongId = examSubjectSongId;
- }
- public Integer getExamMusicTheoryId() {
- return examMusicTheoryId;
- }
- public void setExamMusicTheoryId(Integer examMusicTheoryId) {
- this.examMusicTheoryId = examMusicTheoryId;
- }
- public Integer getExamMusicTheoryLevel() {
- return examMusicTheoryLevel;
- }
- public void setExamMusicTheoryLevel(Integer examMusicTheoryLevel) {
- this.examMusicTheoryLevel = examMusicTheoryLevel;
- }
- public BigDecimal getLevelFee() {
- return levelFee;
- }
- public void setLevelFee(BigDecimal levelFee) {
- this.levelFee = levelFee;
- }
- public BigDecimal getTheoryLevelFee() {
- return theoryLevelFee;
- }
- public void setTheoryLevelFee(BigDecimal theoryLevelFee) {
- this.theoryLevelFee = theoryLevelFee;
- }
- public Integer getLastMusicTheoryLevel() {
- return lastMusicTheoryLevel;
- }
- public void setLastMusicTheoryLevel(Integer lastMusicTheoryLevel) {
- this.lastMusicTheoryLevel = lastMusicTheoryLevel;
- }
- public String getLastMusicTheoryCertificateUrl() {
- return lastMusicTheoryCertificateUrl;
- }
- public void setLastMusicTheoryCertificateUrl(String lastMusicTheoryCertificateUrl) {
- this.lastMusicTheoryCertificateUrl = lastMusicTheoryCertificateUrl;
- }
- @Override
- public String toString() {
- return ToStringBuilder.reflectionToString(this);
- }
- }
|