| package com.doumee.dao.business.model.dto; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| /** | 
|  * @author T14 | 
|  */ | 
| @Data | 
| public class BaseCategoryRequestParam{ | 
|   | 
|     @ApiModelProperty(value = "主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "状态 0启用 1禁用") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "排序码") | 
|     private Integer sortnum; | 
|   | 
|     @ApiModelProperty(value = "所属品类编码(关联category表)") | 
|     private Integer categoryId; | 
|   | 
| } |