package com.hz.crm.dto;
|
|
|
/**
|
* 商品规格扩展
|
* @author fwq
|
*/
|
public class GoodsSpecDto {
|
|
/**操作对象 0:规格,1:规格值*/
|
private Integer commonType;
|
/**操作对象标识*/
|
private String commonId;
|
|
public Integer getCommonType() {
|
return commonType;
|
}
|
|
public void setCommonType(Integer commonType) {
|
this.commonType = commonType;
|
}
|
|
public String getCommonId() {
|
return commonId;
|
}
|
|
public void setCommonId(String commonId) {
|
this.commonId = commonId;
|
}
|
}
|