商品 上下架
This commit is contained in:
parent
e72cc189da
commit
e56c7c6d81
|
|
@ -321,6 +321,11 @@ public class TbProduct implements Serializable {
|
||||||
private Integer stockNumber = 0;
|
private Integer stockNumber = 0;
|
||||||
|
|
||||||
|
|
||||||
|
@Column(name = "is_grounding")
|
||||||
|
@ApiModelProperty("上下架")
|
||||||
|
private Integer isGrounding = 1;
|
||||||
|
|
||||||
|
|
||||||
public void copy(TbProduct source){
|
public void copy(TbProduct source){
|
||||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,14 +29,10 @@ public class TbProductNewVo {
|
||||||
private String typeEnum;
|
private String typeEnum;
|
||||||
//库存
|
//库存
|
||||||
private Double stockNumber;
|
private Double stockNumber;
|
||||||
//是否在收银端上架 0否1是
|
//上下架 0否1是
|
||||||
private Integer isShowCash;
|
private Integer isGrounding;
|
||||||
//是否在小程序上架 0否1是
|
|
||||||
private Integer isShowMall;
|
|
||||||
//是否售罄 0否1是
|
//是否售罄 0否1是
|
||||||
private Integer isPauseSale;
|
private Integer isPauseSale;
|
||||||
//是否热销
|
|
||||||
private Integer isHot;
|
|
||||||
|
|
||||||
private List<ViewConSku> conInfos;
|
private List<ViewConSku> conInfos;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue