parent
91feac596c
commit
6cf053cebd
@ -0,0 +1,26 @@
|
||||
package com.macro.mall.dto;
|
||||
|
||||
|
||||
/**
|
||||
* 商品分类对应属性信息
|
||||
*/
|
||||
public class ProductAttrInfo {//商品属性信息
|
||||
private Long attributeId;
|
||||
private Long attributeCategoryId;
|
||||
|
||||
public Long getAttributeId() {
|
||||
return attributeId;
|
||||
}
|
||||
|
||||
public void setAttributeId(Long attributeId) {
|
||||
this.attributeId = attributeId;
|
||||
}
|
||||
|
||||
public Long getAttributeCategoryId() {
|
||||
return attributeCategoryId;
|
||||
}
|
||||
|
||||
public void setAttributeCategoryId(Long attributeCategoryId) {
|
||||
this.attributeCategoryId = attributeCategoryId;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue