|  | @@ -2,7 +2,6 @@ package com.hwrj.cloud.admin.dto.param;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  import com.alibaba.excel.annotation.ExcelIgnore;
 | 
	
		
			
				|  |  |  import com.alibaba.excel.annotation.ExcelProperty;
 | 
	
		
			
				|  |  | -import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  |  import lombok.Data;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  import java.math.BigDecimal;
 | 
	
	
		
			
				|  | @@ -35,27 +34,27 @@ public class PmsProductParam {
 | 
	
		
			
				|  |  |       * 删除状态:0->未删除;1->已删除
 | 
	
		
			
				|  |  |       **/
 | 
	
		
			
				|  |  |      @ExcelProperty("删除状态:0->未删除;1->已删除")
 | 
	
		
			
				|  |  | -    private int deleteStatus;
 | 
	
		
			
				|  |  | +    private int deleteStatus=0;
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |       * 上架状态:0->下架;1->上架
 | 
	
		
			
				|  |  |       **/
 | 
	
		
			
				|  |  |      @ExcelProperty("上架状态:0->下架;1->上架")
 | 
	
		
			
				|  |  | -    private int publishStatus;
 | 
	
		
			
				|  |  | +    private int publishStatus=1;
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |       * 新品状态:0->不是新品;1->新品
 | 
	
		
			
				|  |  |       **/
 | 
	
		
			
				|  |  |      @ExcelProperty("新品状态:0->不是新品;1->新品")
 | 
	
		
			
				|  |  | -    private int newStatus;
 | 
	
		
			
				|  |  | +    private int newStatus=1;
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |       * 推荐状态;0->不推荐;1->推荐
 | 
	
		
			
				|  |  |       **/
 | 
	
		
			
				|  |  |      @ExcelProperty("推荐状态;0->不推荐;1->推荐")
 | 
	
		
			
				|  |  | -    private int recommandStatus;
 | 
	
		
			
				|  |  | +    private int recommandStatus=1;
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |       * 审核状态:0->未审核;1->审核通过
 | 
	
		
			
				|  |  |       **/
 | 
	
		
			
				|  |  |      @ExcelProperty("审核状态:0->未审核;1->审核通过")
 | 
	
		
			
				|  |  | -    private int verifyStatus;
 | 
	
		
			
				|  |  | +    private int verifyStatus=1;
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |       * 排序
 | 
	
		
			
				|  |  |       **/
 |