|  | @@ -31,11 +31,16 @@ public class UserRewardVo implements Serializable {
 | 
	
		
			
				|  |  |  	@ApiModelProperty("手机号")
 | 
	
		
			
				|  |  |  	private String phone;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	@ApiModelProperty("获奖/达标时间")
 | 
	
		
			
				|  |  | +	@ApiModelProperty("发奖时间")
 | 
	
		
			
				|  |  |  	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
 | 
	
		
			
				|  |  |  	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 | 
	
		
			
				|  |  |  	private Date  createTime;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +	@ApiModelProperty("获奖/达标时间")
 | 
	
		
			
				|  |  | +	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
 | 
	
		
			
				|  |  | +	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 | 
	
		
			
				|  |  | +	private Date winningTime;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	@ApiModelProperty("评测时间")
 | 
	
		
			
				|  |  |  	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
 | 
	
		
			
				|  |  |  	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 | 
	
	
		
			
				|  | @@ -180,6 +185,30 @@ public class UserRewardVo implements Serializable {
 | 
	
		
			
				|  |  |  		this.evaluationTime = evaluationTime;
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +	public Date getWinningTime() {
 | 
	
		
			
				|  |  | +		return winningTime;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setWinningTime(Date winningTime) {
 | 
	
		
			
				|  |  | +		this.winningTime = winningTime;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public Double getScore() {
 | 
	
		
			
				|  |  | +		return score;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setScore(Double score) {
 | 
	
		
			
				|  |  | +		this.score = score;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public int getTimes() {
 | 
	
		
			
				|  |  | +		return times;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	public void setTimes(int times) {
 | 
	
		
			
				|  |  | +		this.times = times;
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  	public UserRewardVo teacherName(String teacherName) {
 | 
	
		
			
				|  |  |  		this.teacherName = teacherName;
 | 
	
		
			
				|  |  |  		return this;
 |