商品属性信息代码

master
王皓雯 6 years ago
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…
Cancel
Save