|  |  | @ -1,6 +1,8 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  | package cn.estsh.i3plus.pojo.softswitch.bean; |  |  |  | package cn.estsh.i3plus.pojo.softswitch.bean; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn; | 
			
		
	
		
		
			
				
					
					|  |  |  | import cn.estsh.i3plus.pojo.base.bean.BaseBean; |  |  |  | import cn.estsh.i3plus.pojo.base.bean.BaseBean; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | import cn.estsh.i3plus.pojo.base.enumutil.BlockSoftSwitchEnumUtil; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |  |  |  | import com.fasterxml.jackson.databind.annotation.JsonSerialize; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |  |  |  | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; | 
			
		
	
		
		
			
				
					
					|  |  |  | import io.swagger.annotations.Api; |  |  |  | import io.swagger.annotations.Api; | 
			
		
	
	
		
		
			
				
					|  |  | @ -54,6 +56,7 @@ public class BsSuitDataDetail extends BaseBean { | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |     @Column(name = "CASE_TYPE_ID") |  |  |  |     @Column(name = "CASE_TYPE_ID") | 
			
		
	
		
		
			
				
					
					|  |  |  |     @ApiParam(value = "套件类型id(枚举)") |  |  |  |     @ApiParam(value = "套件类型id(枚举)") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     @AnnoOutputColumn(refClass = BlockSoftSwitchEnumUtil.CASE_TYPE.class) | 
			
		
	
		
		
			
				
					
					|  |  |  |     private Integer caseTypeId; |  |  |  |     private Integer caseTypeId; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |     @Column(name = "SUIT_TYPE_NAME_RDD") |  |  |  |     @Column(name = "SUIT_TYPE_NAME_RDD") | 
			
		
	
	
		
		
			
				
					|  |  | @ -81,8 +84,14 @@ public class BsSuitDataDetail extends BaseBean { | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |     @Column(name = "PROCESS_STATE") |  |  |  |     @Column(name = "PROCESS_STATE") | 
			
		
	
		
		
			
				
					
					|  |  |  |     @ApiParam(value = "处理状态") |  |  |  |     @ApiParam(value = "处理状态") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     @AnnoOutputColumn(refClass = BlockSoftSwitchEnumUtil.SUIT_PROCESS_STATUS.class) | 
			
		
	
		
		
			
				
					
					|  |  |  |     private Integer processState; |  |  |  |     private Integer processState; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     public String getProcessStateTxt() { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         return processState == null ? BlockSoftSwitchEnumUtil.SUIT_PROCESS_STATUS.UNPROCESSED.getDescription() : | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |                 BlockSoftSwitchEnumUtil.SUIT_PROCESS_STATUS.valueOfDescription(processState); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |     @Column(name = "PROCESS_TIME") |  |  |  |     @Column(name = "PROCESS_TIME") | 
			
		
	
		
		
			
				
					
					|  |  |  |     @ApiParam(value = "处理时间") |  |  |  |     @ApiParam(value = "处理时间") | 
			
		
	
		
		
			
				
					
					|  |  |  |     private String processTime; |  |  |  |     private String processTime; | 
			
		
	
	
		
		
			
				
					|  |  | 
 |