1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.fdkankan.goods.entity;
- public class GoodsSpecValue implements java.io.Serializable {
- private static final long serialVersionUID = 1L;
- private String id; //
- private String goodsSpecId; // 规格id
- private String goodsSpecValue; // 规格值
- private String createTime; // 创建时间
- private String recStatus; // 记录的状态,A: 生效,I: 禁用
- private String updateTime; // 更新时间
- private Integer tbStatus; // 0正常,1删除
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getGoodsSpecId() {
- return goodsSpecId;
- }
- public void setGoodsSpecId(String goodsSpecId) {
- this.goodsSpecId = goodsSpecId;
- }
- public String getGoodsSpecValue() {
- return goodsSpecValue;
- }
- public void setGoodsSpecValue(String goodsSpecValue) {
- this.goodsSpecValue = goodsSpecValue;
- }
- public String getCreateTime() {
- return createTime;
- }
- public void setCreateTime(String createTime) {
- this.createTime = createTime;
- }
- public String getRecStatus() {
- return recStatus;
- }
- public void setRecStatus(String recStatus) {
- this.recStatus = recStatus;
- }
- public String getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(String updateTime) {
- this.updateTime = updateTime;
- }
- public Integer getTbStatus() {
- return tbStatus;
- }
- public void setTbStatus(Integer tbStatus) {
- this.tbStatus = tbStatus;
- }
- }
|