package com.doumee.dao.business.model.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author T14
|
*/
|
@Data
|
@ApiModel("参数属性值")
|
public class BaseGoodsParamCreatRequest {
|
|
@ApiModelProperty(value = "名称(不可重复)")
|
private String name;
|
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
|
@ApiModelProperty(value = "状态 0启用 1禁用")
|
private Integer status;
|
|
@ApiModelProperty(value = "排序码")
|
private Integer sortnum;
|
|
@ApiModelProperty(value = "关联品类参数编码(关联base_cate_param表)")
|
private Integer pramaId;
|
|
@ApiModelProperty(value = "参数值")
|
private String val;
|
|
@ApiModelProperty(value = "商品编码(关联base_goods表)")
|
private Integer goodsId;
|
}
|