浏览代码

add 获取乐团报名相关信息

周箭河 5 年之前
父节点
当前提交
24ed3d38bb
共有 1 个文件被更改,包括 61 次插入40 次删除
  1. 61 40
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/StudentRegistration.java

+ 61 - 40
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/StudentRegistration.java

@@ -14,26 +14,32 @@ public class StudentRegistration {
 
 	/**  */
 	private Long id;
-	
+
 	/**  */
 	@ApiModelProperty(value = "学生编号",required = false)
 	private Integer userId;
 
 	@ApiModelProperty(value = "学生姓名",required = true)
 	private String name;
-	
+
+	@ApiModelProperty(value = "性别(0,女  1,男",required = true)
+	private String gender;
+
+	@ApiModelProperty(value = "身份证号",required = true)
+	private String idCardNo;
+
 	/** 所属乐团(对应 music_group 表id) */
 	@ApiModelProperty(value = "所属乐团(对应 music_group 表id)",required = false)
 	private Integer musicGroupId;
-	
+
 	/** 当前所在年级 */
 	@ApiModelProperty(value = "当前所在年级",required = false)
 	private String currentGrade;
-	
+
 	/** 当前所在班级 */
 	@ApiModelProperty(value = "当前所在班级",required = false)
 	private String currentClass;
-	
+
 	/** 报名科目 */
 	@ApiModelProperty(value = "报名科目",required = true)
 	private Integer subjectId;
@@ -41,25 +47,25 @@ public class StudentRegistration {
 	/** 报名科目 */
 	@ApiModelProperty(value = "实际科目",hidden = true)
 	private Integer actualSubjectId;
-	
+
 	/** 是否允许调剂 */
 	@ApiModelProperty(value = "是否允许调剂",required = false)
 	private YesOrNoEnum isAllowAdjust;
-	
+
 	/** 器材购买方式(团购、自备) */
 	@ApiModelProperty(value = "器材购买方式(团购、自备)",required = false)
 	private KitPurchaseMethodEnum kitPurchaseMethod;
-	
+
 	/**  */
 	@ApiModelProperty(value = "备注",required = false)
 	private String remark;
-	
+
 	/**  */
 	private java.util.Date createTime;
-	
+
 	/**  */
 	private java.util.Date updateTime;
-	
+
 	/** 家长姓名 */
 	@ApiModelProperty(value = "家长姓名",required = false)
 	private String parentsName;
@@ -67,22 +73,22 @@ public class StudentRegistration {
 	/** 家长姓名 */
 	@ApiModelProperty(value = "家长电话",required = false)
 	private String parentsPhone;
-	
+
 	/** 家长单位 */
 	@ApiModelProperty(value = "家长单位",required = false)
 	private String parentsCompany;
-	
+
 	/** 缴费状态(1-已缴费 0-未交费) */
 	@ApiModelProperty(value = "缴费状态(1-已缴费 0-未交费)",required = false)
 	private YesOrNoEnum paymentStatus;
 
 	@ApiModelProperty(value = "班级id",hidden = true)
 	private Integer ClassGroupId;
-	
+
 	/** 最后缴费日期 */
 	@ApiModelProperty(value = "最后缴费日期",required = false)
 	private java.util.Date lastPaymentDate;
-	
+
 	/** 预计下次缴费日期 */
 	@ApiModelProperty(value = "预计下次缴费日期",required = false)
 	private java.util.Date nextPaymentDate;
@@ -106,47 +112,47 @@ public class StudentRegistration {
 	public void setId(Long id){
 		this.id = id;
 	}
-	
+
 	public Long getId(){
 		return this.id;
 	}
-			
+
 	public void setUserId(Integer userId){
 		this.userId = userId;
 	}
-	
+
 	public Integer getUserId(){
 		return this.userId;
 	}
-			
+
 	public void setMusicGroupId(Integer musicGroupId){
 		this.musicGroupId = musicGroupId;
 	}
-	
+
 	public Integer getMusicGroupId(){
 		return this.musicGroupId;
 	}
-			
+
 	public void setCurrentGrade(String currentGrade){
 		this.currentGrade = currentGrade;
 	}
-	
+
 	public String getCurrentGrade(){
 		return this.currentGrade;
 	}
-			
+
 	public void setCurrentClass(String currentClass){
 		this.currentClass = currentClass;
 	}
-	
+
 	public String getCurrentClass(){
 		return this.currentClass;
 	}
-			
+
 	public void setSubjectId(Integer subjectId){
 		this.subjectId = subjectId;
 	}
-	
+
 	public Integer getSubjectId(){
 		return this.subjectId;
 	}
@@ -174,39 +180,39 @@ public class StudentRegistration {
 	public void setRemark(String remark){
 		this.remark = remark;
 	}
-	
+
 	public String getRemark(){
 		return this.remark;
 	}
-			
+
 	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 setParentsName(String parentsName){
 		this.parentsName = parentsName;
 	}
-	
+
 	public String getParentsName(){
 		return this.parentsName;
 	}
-			
+
 	public void setParentsCompany(String parentsCompany){
 		this.parentsCompany = parentsCompany;
 	}
-	
+
 	public String getParentsCompany(){
 		return this.parentsCompany;
 	}
@@ -218,15 +224,15 @@ public class StudentRegistration {
 	public void setLastPaymentDate(java.util.Date lastPaymentDate){
 		this.lastPaymentDate = lastPaymentDate;
 	}
-	
+
 	public java.util.Date getLastPaymentDate(){
 		return this.lastPaymentDate;
 	}
-			
+
 	public void setNextPaymentDate(java.util.Date nextPaymentDate){
 		this.nextPaymentDate = nextPaymentDate;
 	}
-	
+
 	public java.util.Date getNextPaymentDate(){
 		return this.nextPaymentDate;
 	}
@@ -246,10 +252,25 @@ public class StudentRegistration {
 	public void setName(String name) {
 		this.name = name;
 	}
-			
+
+	public String getIdCardNo() {
+		return idCardNo;
+	}
+
+	public void setIdCardNo(String idCardNo) {
+		this.idCardNo = idCardNo;
+	}
+
+	public String getGender() {
+		return gender;
+	}
+
+	public void setGender(String gender) {
+		this.gender = gender;
+	}
+
 	@Override
 	public String toString() {
 		return ToStringBuilder.reflectionToString(this);
 	}
-
 }