|  |  | @ -1,9 +1,12 @@ | 
			
		
	
		
			
				
					|  |  |  | package com.epmet.entity; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  | import com.baomidou.mybatisplus.annotation.FieldStrategy; | 
			
		
	
		
			
				
					|  |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
			
		
	
		
			
				
					|  |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.commons.mybatis.entity.BaseEpmetEntity; | 
			
		
	
		
			
				
					|  |  |  | import lombok.Data; | 
			
		
	
		
			
				
					|  |  |  | import lombok.EqualsAndHashCode; | 
			
		
	
		
			
				
					|  |  |  | import org.apache.ibatis.type.JdbcType; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  | import java.util.Date; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
	
		
			
				
					|  |  | @ -53,11 +56,13 @@ public class MemoConcernEntity extends BaseEpmetEntity { | 
			
		
	
		
			
				
					|  |  |  |     /** | 
			
		
	
		
			
				
					|  |  |  |      * 预计关怀时间 | 
			
		
	
		
			
				
					|  |  |  |      */ | 
			
		
	
		
			
				
					|  |  |  | 	@TableField(value="REMIND_TIME",updateStrategy = FieldStrategy.IGNORED,jdbcType = JdbcType.TIMESTAMP) | 
			
		
	
		
			
				
					|  |  |  | 	private Date scheduledTime; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |     /** | 
			
		
	
		
			
				
					|  |  |  |      * 实际执行时间(预留字段) | 
			
		
	
		
			
				
					|  |  |  |      */ | 
			
		
	
		
			
				
					|  |  |  | 	@TableField(value="REMIND_TIME",updateStrategy = FieldStrategy.IGNORED,jdbcType = JdbcType.TIMESTAMP) | 
			
		
	
		
			
				
					|  |  |  | 	private Date actualTime; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |     /** | 
			
		
	
	
		
			
				
					|  |  | 
 |