GoodsSpecValue.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.fdkankan.goods.entity;
  2. public class GoodsSpecValue implements java.io.Serializable {
  3. private static final long serialVersionUID = 1L;
  4. private String id; //
  5. private String goodsSpecId; // 规格id
  6. private String goodsSpecValue; // 规格值
  7. private String createTime; // 创建时间
  8. private String recStatus; // 记录的状态,A: 生效,I: 禁用
  9. private String updateTime; // 更新时间
  10. private Integer tbStatus; // 0正常,1删除
  11. public String getId() {
  12. return id;
  13. }
  14. public void setId(String id) {
  15. this.id = id;
  16. }
  17. public String getGoodsSpecId() {
  18. return goodsSpecId;
  19. }
  20. public void setGoodsSpecId(String goodsSpecId) {
  21. this.goodsSpecId = goodsSpecId;
  22. }
  23. public String getGoodsSpecValue() {
  24. return goodsSpecValue;
  25. }
  26. public void setGoodsSpecValue(String goodsSpecValue) {
  27. this.goodsSpecValue = goodsSpecValue;
  28. }
  29. public String getCreateTime() {
  30. return createTime;
  31. }
  32. public void setCreateTime(String createTime) {
  33. this.createTime = createTime;
  34. }
  35. public String getRecStatus() {
  36. return recStatus;
  37. }
  38. public void setRecStatus(String recStatus) {
  39. this.recStatus = recStatus;
  40. }
  41. public String getUpdateTime() {
  42. return updateTime;
  43. }
  44. public void setUpdateTime(String updateTime) {
  45. this.updateTime = updateTime;
  46. }
  47. public Integer getTbStatus() {
  48. return tbStatus;
  49. }
  50. public void setTbStatus(Integer tbStatus) {
  51. this.tbStatus = tbStatus;
  52. }
  53. }