|  |  |  | @ -1,9 +1,7 @@ | 
		
	
		
			
				|  |  |  |  | package cn.estsh.i3plus.pojo.wms.bean; | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  | import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn; | 
		
	
		
			
				|  |  |  |  | import cn.estsh.i3plus.pojo.base.annotation.DynamicField; | 
		
	
		
			
				|  |  |  |  | import cn.estsh.i3plus.pojo.base.bean.BaseBean; | 
		
	
		
			
				|  |  |  |  | import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil; | 
		
	
		
			
				|  |  |  |  | import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil; | 
		
	
		
			
				|  |  |  |  | import io.swagger.annotations.Api; | 
		
	
		
			
				|  |  |  |  | import io.swagger.annotations.ApiParam; | 
		
	
	
		
			
				
					|  |  |  | @ -13,7 +11,11 @@ import org.hibernate.annotations.ColumnDefault; | 
		
	
		
			
				|  |  |  |  | import org.hibernate.annotations.DynamicInsert; | 
		
	
		
			
				|  |  |  |  | import org.hibernate.annotations.DynamicUpdate; | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  | import javax.persistence.*; | 
		
	
		
			
				|  |  |  |  | import javax.persistence.Column; | 
		
	
		
			
				|  |  |  |  | import javax.persistence.Entity; | 
		
	
		
			
				|  |  |  |  | import javax.persistence.Table; | 
		
	
		
			
				|  |  |  |  | import javax.persistence.Transient; | 
		
	
		
			
				|  |  |  |  | import javax.persistence.Version; | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  | /** | 
		
	
		
			
				|  |  |  |  |  * @Description : 质检单明细信息 | 
		
	
	
		
			
				
					|  |  |  | @ -61,6 +63,7 @@ public class WmsQCDetails extends BaseBean { | 
		
	
		
			
				|  |  |  |  |      */ | 
		
	
		
			
				|  |  |  |  |     @Column(name = "ITEM_STATUS") | 
		
	
		
			
				|  |  |  |  |     @ApiParam(value = "状态", example = "1") | 
		
	
		
			
				|  |  |  |  |     @AnnoOutputColumn(refClass = WmsEnumUtil.QC_ITEM_STATUS.class, refForeignKey = "value", value = "description") | 
		
	
		
			
				|  |  |  |  |     public Integer itemStatus; | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |     @Column(name = "REMARK") | 
		
	
	
		
			
				
					|  |  |  | 
 |