|  | @@ -9,11 +9,13 @@ import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  |  import java.io.Serializable;
 | 
	
		
			
				|  |  |  import java.util.Date;
 | 
	
		
			
				|  |  |  import com.fasterxml.jackson.annotation.JsonFormat;
 | 
	
		
			
				|  |  | +import lombok.Data;
 | 
	
		
			
				|  |  |  import org.springframework.format.annotation.DateTimeFormat;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  /**
 | 
	
		
			
				|  |  |   * 学生使用功能时间表
 | 
	
		
			
				|  |  |   */
 | 
	
		
			
				|  |  | +@Data
 | 
	
		
			
				|  |  |  @TableName("student_time")
 | 
	
		
			
				|  |  |  @ApiModel(value = "StudentTime对象", description = "学生使用功能时间表")
 | 
	
		
			
				|  |  |  public class StudentTime implements Serializable {
 | 
	
	
		
			
				|  | @@ -26,6 +28,11 @@ public class StudentTime implements Serializable {
 | 
	
		
			
				|  |  |      @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
 | 
	
		
			
				|  |  |      private Date firstVipTime;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @ApiModelProperty("第一次购买小组课时间 ")
 | 
	
		
			
				|  |  | +    @TableField(value = "first_group_time_")
 | 
	
		
			
				|  |  | +    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
 | 
	
		
			
				|  |  | +    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
 | 
	
		
			
				|  |  | +    private Date firstGroupTime;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiModelProperty("第一次购买svip时间 ")
 | 
	
		
			
				|  |  |      @TableField(value = "first_svip_time_")
 | 
	
	
		
			
				|  | @@ -88,101 +95,4 @@ public class StudentTime implements Serializable {
 | 
	
		
			
				|  |  |      @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
 | 
	
		
			
				|  |  |      private Date firstDiscountTime;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstVipCourseTime() {
 | 
	
		
			
				|  |  | -        return firstVipCourseTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstVipCourseTime(Date firstVipCourseTime) {
 | 
	
		
			
				|  |  | -        this.firstVipCourseTime = firstVipCourseTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstDiscountTime() {
 | 
	
		
			
				|  |  | -        return firstDiscountTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstDiscountTime(Date firstDiscountTime) {
 | 
	
		
			
				|  |  | -        this.firstDiscountTime = firstDiscountTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstSvipTime() {
 | 
	
		
			
				|  |  | -        return firstSvipTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstSvipTime(Date firstSvipTime) {
 | 
	
		
			
				|  |  | -        this.firstSvipTime = firstSvipTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstActivityTime() {
 | 
	
		
			
				|  |  | -        return firstActivityTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstActivityTime(Date firstActivityTime) {
 | 
	
		
			
				|  |  | -        this.firstActivityTime = firstActivityTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstPayTime() {
 | 
	
		
			
				|  |  | -        return firstPayTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstPayTime(Date firstPayTime) {
 | 
	
		
			
				|  |  | -        this.firstPayTime = firstPayTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Long getUserId() {
 | 
	
		
			
				|  |  | -        return userId;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setUserId(Long userId) {
 | 
	
		
			
				|  |  | -        this.userId = userId;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstVipTime() {
 | 
	
		
			
				|  |  | -        return firstVipTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstVipTime(Date firstVipTime) {
 | 
	
		
			
				|  |  | -        this.firstVipTime = firstVipTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstPracticeTime() {
 | 
	
		
			
				|  |  | -        return firstPracticeTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstPracticeTime(Date firstPracticeTime) {
 | 
	
		
			
				|  |  | -        this.firstPracticeTime = firstPracticeTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstVideoTime() {
 | 
	
		
			
				|  |  | -        return firstVideoTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstVideoTime(Date firstVideoTime) {
 | 
	
		
			
				|  |  | -        this.firstVideoTime = firstVideoTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstLiveTime() {
 | 
	
		
			
				|  |  | -        return firstLiveTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstLiveTime(Date firstLiveTime) {
 | 
	
		
			
				|  |  | -        this.firstLiveTime = firstLiveTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstMusicTime() {
 | 
	
		
			
				|  |  | -        return firstMusicTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstMusicTime(Date firstMusicTime) {
 | 
	
		
			
				|  |  | -        this.firstMusicTime = firstMusicTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public Date getFirstMallTime() {
 | 
	
		
			
				|  |  | -        return firstMallTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setFirstMallTime(Date firstMallTime) {
 | 
	
		
			
				|  |  | -        this.firstMallTime = firstMallTime;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |  }
 |