You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
2.6 KiB

2 years ago
1 year ago
1 year ago
2 years ago
1 year ago
2 years ago
  1. package com.spring.modules.base.entity;
  2. public class PartSubPropertiesValue {
  3. /**
  4. *
  5. */
  6. private String partNo;
  7. /**
  8. *
  9. */
  10. private String site;
  11. /**
  12. *
  13. */
  14. private String codeNo;
  15. /**
  16. *
  17. */
  18. private Double subCodeSeqNo;
  19. /**
  20. *
  21. */
  22. private String subCodeDesc;
  23. /**
  24. *
  25. */
  26. private Double itemNo;
  27. /**
  28. *
  29. */
  30. private String propertiesItemNo;
  31. /**
  32. *
  33. */
  34. private String textValue;
  35. /**
  36. *
  37. */
  38. private Double numValue;
  39. /**
  40. *
  41. */
  42. private String recordType;
  43. private Integer orderId;
  44. private String valueTypeDb;//属性值的类型 T 文本 N 数字
  45. public String getPartNo() {
  46. return partNo;
  47. }
  48. public void setPartNo(String partNo) {
  49. this.partNo = partNo;
  50. }
  51. public String getSite() {
  52. return site;
  53. }
  54. public void setSite(String site) {
  55. this.site = site;
  56. }
  57. public String getCodeNo() {
  58. return codeNo;
  59. }
  60. public void setCodeNo(String codeNo) {
  61. this.codeNo = codeNo;
  62. }
  63. public Double getSubCodeSeqNo() {
  64. return subCodeSeqNo;
  65. }
  66. public void setSubCodeSeqNo(Double subCodeSeqNo) {
  67. this.subCodeSeqNo = subCodeSeqNo;
  68. }
  69. public String getSubCodeDesc() {
  70. return subCodeDesc;
  71. }
  72. public void setSubCodeDesc(String subCodeDesc) {
  73. this.subCodeDesc = subCodeDesc;
  74. }
  75. public Double getItemNo() {
  76. return itemNo;
  77. }
  78. public void setItemNo(Double itemNo) {
  79. this.itemNo = itemNo;
  80. }
  81. public String getPropertiesItemNo() {
  82. return propertiesItemNo;
  83. }
  84. public void setPropertiesItemNo(String propertiesItemNo) {
  85. this.propertiesItemNo = propertiesItemNo;
  86. }
  87. public String getTextValue() {
  88. return textValue;
  89. }
  90. public void setTextValue(String textValue) {
  91. this.textValue = textValue;
  92. }
  93. public Double getNumValue() {
  94. return numValue;
  95. }
  96. public void setNumValue(Double numValue) {
  97. this.numValue = numValue;
  98. }
  99. public String getRecordType() {
  100. return recordType;
  101. }
  102. public void setRecordType(String recordType) {
  103. this.recordType = recordType;
  104. }
  105. public Integer getOrderId() {
  106. return orderId;
  107. }
  108. public void setOrderId(Integer orderId) {
  109. this.orderId = orderId;
  110. }
  111. public String getValueTypeDb() {
  112. return valueTypeDb;
  113. }
  114. public void setValueTypeDb(String valueTypeDb) {
  115. this.valueTypeDb = valueTypeDb;
  116. }
  117. }