|  | @@ -12,262 +12,315 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
 | 
	
		
			
				|  |  |   */
 | 
	
		
			
				|  |  |  public class StudentRegistration {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/**  */
 | 
	
		
			
				|  |  | -	private Long id;
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "报名id", hidden = true)
 | 
	
		
			
				|  |  | +    private Long id;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "机构id", hidden = true)
 | 
	
		
			
				|  |  | +    private Integer organId;
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "学生编号", hidden = true)
 | 
	
		
			
				|  |  | +    private Integer userId;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "学生姓名", required = true)
 | 
	
		
			
				|  |  | +    private String name;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "性别(0,女  1,男", required = true)
 | 
	
		
			
				|  |  | +    private Integer gender;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "身份证号", required = true)
 | 
	
		
			
				|  |  | +    private String idCardNo;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 所属乐团(对应 music_group 表id)
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "所属乐团(对应 music_group 表id)", required = true)
 | 
	
		
			
				|  |  | +    private Integer musicGroupId;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 当前所在年级
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "当前所在年级", required = true)
 | 
	
		
			
				|  |  | +    private String currentGrade;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 当前所在班级
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "当前所在班级", required = true)
 | 
	
		
			
				|  |  | +    private String currentClass;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 报名科目
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "报名科目", required = true)
 | 
	
		
			
				|  |  | +    private Integer subjectId;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 报名科目
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "实际科目", hidden = true)
 | 
	
		
			
				|  |  | +    private Integer actualSubjectId;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 是否允许调剂
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "是否允许调剂", required = true)
 | 
	
		
			
				|  |  | +    private YesOrNoEnum isAllowAdjust;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 器材购买方式(团购、自备)
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "器材购买方式(GROUP:团购,OWNED:自备)", required = true)
 | 
	
		
			
				|  |  | +    private KitPurchaseMethodEnum kitPurchaseMethod;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "备注", hidden = false)
 | 
	
		
			
				|  |  | +    private String remark;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "添加时间", hidden = true)
 | 
	
		
			
				|  |  | +    private java.util.Date createTime;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "更新时间", hidden = true)
 | 
	
		
			
				|  |  | +    private java.util.Date updateTime;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 家长姓名
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "家长姓名", required = true)
 | 
	
		
			
				|  |  | +    private String parentsName;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 家长姓名
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "家长电话", required = true)
 | 
	
		
			
				|  |  | +    private String parentsPhone;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 家长单位
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "家长单位", required = false)
 | 
	
		
			
				|  |  | +    private String parentsCompany;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 缴费状态(1-已缴费 0-未交费)
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "缴费状态(1-已缴费 0-未交费)", hidden = true)
 | 
	
		
			
				|  |  | +    private YesOrNoEnum paymentStatus;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "班级id", hidden = true)
 | 
	
		
			
				|  |  | +    private Integer ClassGroupId;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 最后缴费日期
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "最后缴费日期", hidden = true)
 | 
	
		
			
				|  |  | +    private java.util.Date lastPaymentDate;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 预计下次缴费日期
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "预计下次缴费日期", hidden = true)
 | 
	
		
			
				|  |  | +    private java.util.Date nextPaymentDate;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public Integer getActualSubjectId() {
 | 
	
		
			
				|  |  | +        return actualSubjectId;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setActualSubjectId(Integer actualSubjectId) {
 | 
	
		
			
				|  |  | +        this.actualSubjectId = actualSubjectId;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String getParentsPhone() {
 | 
	
		
			
				|  |  | +        return parentsPhone;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setParentsPhone(String parentsPhone) {
 | 
	
		
			
				|  |  | +        this.parentsPhone = parentsPhone;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    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;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public YesOrNoEnum getIsAllowAdjust() {
 | 
	
		
			
				|  |  | +        return isAllowAdjust;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setIsAllowAdjust(YesOrNoEnum isAllowAdjust) {
 | 
	
		
			
				|  |  | +        this.isAllowAdjust = isAllowAdjust;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setPaymentStatus(YesOrNoEnum paymentStatus) {
 | 
	
		
			
				|  |  | +        this.paymentStatus = paymentStatus;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public KitPurchaseMethodEnum getKitPurchaseMethod() {
 | 
	
		
			
				|  |  | +        return kitPurchaseMethod;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setKitPurchaseMethod(KitPurchaseMethodEnum kitPurchaseMethod) {
 | 
	
		
			
				|  |  | +        this.kitPurchaseMethod = kitPurchaseMethod;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/**  */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "学生编号",required = false)
 | 
	
		
			
				|  |  | -	private Integer userId;
 | 
	
		
			
				|  |  | +    public void setRemark(String remark) {
 | 
	
		
			
				|  |  | +        this.remark = remark;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "学生姓名",required = true)
 | 
	
		
			
				|  |  | -	private String name;
 | 
	
		
			
				|  |  | +    public String getRemark() {
 | 
	
		
			
				|  |  | +        return this.remark;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "性别(0,女  1,男",required = true)
 | 
	
		
			
				|  |  | -	private String gender;
 | 
	
		
			
				|  |  | +    public void setCreateTime(java.util.Date createTime) {
 | 
	
		
			
				|  |  | +        this.createTime = createTime;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "身份证号",required = true)
 | 
	
		
			
				|  |  | -	private String idCardNo;
 | 
	
		
			
				|  |  | +    public java.util.Date getCreateTime() {
 | 
	
		
			
				|  |  | +        return this.createTime;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 所属乐团(对应 music_group 表id) */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "所属乐团(对应 music_group 表id)",required = false)
 | 
	
		
			
				|  |  | -	private Integer musicGroupId;
 | 
	
		
			
				|  |  | +    public void setUpdateTime(java.util.Date updateTime) {
 | 
	
		
			
				|  |  | +        this.updateTime = updateTime;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 当前所在年级 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "当前所在年级",required = false)
 | 
	
		
			
				|  |  | -	private String currentGrade;
 | 
	
		
			
				|  |  | +    public java.util.Date getUpdateTime() {
 | 
	
		
			
				|  |  | +        return this.updateTime;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 当前所在班级 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "当前所在班级",required = false)
 | 
	
		
			
				|  |  | -	private String currentClass;
 | 
	
		
			
				|  |  | +    public void setParentsName(String parentsName) {
 | 
	
		
			
				|  |  | +        this.parentsName = parentsName;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 报名科目 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "报名科目",required = true)
 | 
	
		
			
				|  |  | -	private Integer subjectId;
 | 
	
		
			
				|  |  | +    public String getParentsName() {
 | 
	
		
			
				|  |  | +        return this.parentsName;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 报名科目 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "实际科目",hidden = true)
 | 
	
		
			
				|  |  | -	private Integer actualSubjectId;
 | 
	
		
			
				|  |  | +    public void setParentsCompany(String parentsCompany) {
 | 
	
		
			
				|  |  | +        this.parentsCompany = parentsCompany;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 是否允许调剂 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "是否允许调剂",required = false)
 | 
	
		
			
				|  |  | -	private YesOrNoEnum isAllowAdjust;
 | 
	
		
			
				|  |  | +    public String getParentsCompany() {
 | 
	
		
			
				|  |  | +        return this.parentsCompany;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 器材购买方式(团购、自备) */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "器材购买方式(团购、自备)",required = false)
 | 
	
		
			
				|  |  | -	private KitPurchaseMethodEnum kitPurchaseMethod;
 | 
	
		
			
				|  |  | +    public YesOrNoEnum getPaymentStatus() {
 | 
	
		
			
				|  |  | +        return paymentStatus;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/**  */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "备注",required = false)
 | 
	
		
			
				|  |  | -	private String remark;
 | 
	
		
			
				|  |  | +    public void setLastPaymentDate(java.util.Date lastPaymentDate) {
 | 
	
		
			
				|  |  | +        this.lastPaymentDate = lastPaymentDate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/**  */
 | 
	
		
			
				|  |  | -	private java.util.Date createTime;
 | 
	
		
			
				|  |  | +    public java.util.Date getLastPaymentDate() {
 | 
	
		
			
				|  |  | +        return this.lastPaymentDate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/**  */
 | 
	
		
			
				|  |  | -	private java.util.Date updateTime;
 | 
	
		
			
				|  |  | +    public void setNextPaymentDate(java.util.Date nextPaymentDate) {
 | 
	
		
			
				|  |  | +        this.nextPaymentDate = nextPaymentDate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 家长姓名 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "家长姓名",required = false)
 | 
	
		
			
				|  |  | -	private String parentsName;
 | 
	
		
			
				|  |  | +    public java.util.Date getNextPaymentDate() {
 | 
	
		
			
				|  |  | +        return this.nextPaymentDate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 家长姓名 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "家长电话",required = false)
 | 
	
		
			
				|  |  | -	private String parentsPhone;
 | 
	
		
			
				|  |  | +    public Integer getClassGroupId() {
 | 
	
		
			
				|  |  | +        return ClassGroupId;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 家长单位 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "家长单位",required = false)
 | 
	
		
			
				|  |  | -	private String parentsCompany;
 | 
	
		
			
				|  |  | +    public void setClassGroupId(Integer classGroupId) {
 | 
	
		
			
				|  |  | +        ClassGroupId = classGroupId;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 缴费状态(1-已缴费 0-未交费) */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "缴费状态(1-已缴费 0-未交费)",required = false)
 | 
	
		
			
				|  |  | -	private YesOrNoEnum paymentStatus;
 | 
	
		
			
				|  |  | +    public String getName() {
 | 
	
		
			
				|  |  | +        return name;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "班级id",hidden = true)
 | 
	
		
			
				|  |  | -	private Integer ClassGroupId;
 | 
	
		
			
				|  |  | +    public void setName(String name) {
 | 
	
		
			
				|  |  | +        this.name = name;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 最后缴费日期 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "最后缴费日期",required = false)
 | 
	
		
			
				|  |  | -	private java.util.Date lastPaymentDate;
 | 
	
		
			
				|  |  | +    public String getIdCardNo() {
 | 
	
		
			
				|  |  | +        return idCardNo;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	/** 预计下次缴费日期 */
 | 
	
		
			
				|  |  | -	@ApiModelProperty(value = "预计下次缴费日期",required = false)
 | 
	
		
			
				|  |  | -	private java.util.Date nextPaymentDate;
 | 
	
		
			
				|  |  | +    public void setIdCardNo(String idCardNo) {
 | 
	
		
			
				|  |  | +        this.idCardNo = idCardNo;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	public Integer getActualSubjectId() {
 | 
	
		
			
				|  |  | -		return actualSubjectId;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setActualSubjectId(Integer actualSubjectId) {
 | 
	
		
			
				|  |  | -		this.actualSubjectId = actualSubjectId;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public String getParentsPhone() {
 | 
	
		
			
				|  |  | -		return parentsPhone;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setParentsPhone(String parentsPhone) {
 | 
	
		
			
				|  |  | -		this.parentsPhone = parentsPhone;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	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 Integer getGender() {
 | 
	
		
			
				|  |  | +        return gender;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	public String getCurrentGrade(){
 | 
	
		
			
				|  |  | -		return this.currentGrade;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setCurrentClass(String currentClass){
 | 
	
		
			
				|  |  | -		this.currentClass = currentClass;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | +    public void setGender(Integer gender) {
 | 
	
		
			
				|  |  | +        this.gender = gender;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	public String getCurrentClass(){
 | 
	
		
			
				|  |  | -		return this.currentClass;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setSubjectId(Integer subjectId){
 | 
	
		
			
				|  |  | -		this.subjectId = subjectId;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	public Integer getSubjectId(){
 | 
	
		
			
				|  |  | -		return this.subjectId;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public YesOrNoEnum getIsAllowAdjust() {
 | 
	
		
			
				|  |  | -		return isAllowAdjust;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setIsAllowAdjust(YesOrNoEnum isAllowAdjust) {
 | 
	
		
			
				|  |  | -		this.isAllowAdjust = isAllowAdjust;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setPaymentStatus(YesOrNoEnum paymentStatus) {
 | 
	
		
			
				|  |  | -		this.paymentStatus = paymentStatus;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public KitPurchaseMethodEnum getKitPurchaseMethod() {
 | 
	
		
			
				|  |  | -		return kitPurchaseMethod;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setKitPurchaseMethod(KitPurchaseMethodEnum kitPurchaseMethod) {
 | 
	
		
			
				|  |  | -		this.kitPurchaseMethod = kitPurchaseMethod;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setRemark(String remark){
 | 
	
		
			
				|  |  | -		this.remark = remark;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public String getRemark(){
 | 
	
		
			
				|  |  | -		return this.remark;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | +    public Integer getOrganId() {
 | 
	
		
			
				|  |  | +        return organId;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	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;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public YesOrNoEnum getPaymentStatus() {
 | 
	
		
			
				|  |  | -		return paymentStatus;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	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;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public Integer getClassGroupId() {
 | 
	
		
			
				|  |  | -		return ClassGroupId;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public void setClassGroupId(Integer classGroupId) {
 | 
	
		
			
				|  |  | -		ClassGroupId = classGroupId;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	public String getName() {
 | 
	
		
			
				|  |  | -		return name;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -	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;
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | +    public void setOrganId(Integer organId) {
 | 
	
		
			
				|  |  | +        this.organId = organId;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	@Override
 | 
	
		
			
				|  |  |  	public String toString() {
 |