| 
					
				 | 
			
			
				@@ -1,5 +1,6 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 package com.yonge.cooleshow.biz.dal.entity; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import com.baomidou.mybatisplus.annotation.IdType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.baomidou.mybatisplus.annotation.TableField; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.baomidou.mybatisplus.annotation.TableId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.baomidou.mybatisplus.annotation.TableName; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -20,7 +21,7 @@ import java.util.Date; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 public class SysSuggestionV2 implements Serializable { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     // 编号 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @TableId(value = "id_") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @TableId(value = "id_",type = IdType.AUTO) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private Long id; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @TableField(value = "suggestion_type_id_") 
			 |