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.

189 lines
3.2 KiB

2 years ago
1 month ago
2 years ago
1 month ago
2 years ago
  1. package com.spring.modules.base.entity;
  2. import org.apache.ibatis.type.Alias;
  3. import java.math.BigDecimal;
  4. @Alias("PlmProjectToolApplyDetail")
  5. public class PlmProjectToolApplyDetail {
  6. /**
  7. *
  8. */
  9. private String site;
  10. /**
  11. *
  12. */
  13. private String applyNo;
  14. /**
  15. *
  16. */
  17. private Integer seqNo;
  18. /**
  19. *
  20. */
  21. private String toolId;
  22. /**
  23. *
  24. */
  25. private BigDecimal standardCost;
  26. private BigDecimal unitCost;
  27. /**
  28. *
  29. */
  30. private Integer applyQty;
  31. /**
  32. *
  33. */
  34. private String remark;
  35. /**
  36. *
  37. */
  38. private String orderRef1;
  39. /**
  40. *
  41. */
  42. private String orderRef2;
  43. /**
  44. *
  45. */
  46. private String orderRef3;
  47. /**
  48. *
  49. */
  50. private String orderRef4;
  51. /**
  52. *
  53. */
  54. private String orderRef5;
  55. private String orderRef6;
  56. private String instanceCode;
  57. public String getSite() {
  58. return site;
  59. }
  60. public void setSite(String site) {
  61. this.site = site;
  62. }
  63. public String getApplyNo() {
  64. return applyNo;
  65. }
  66. public void setApplyNo(String applyNo) {
  67. this.applyNo = applyNo;
  68. }
  69. public Integer getSeqNo() {
  70. return seqNo;
  71. }
  72. public void setSeqNo(Integer seqNo) {
  73. this.seqNo = seqNo;
  74. }
  75. public String getToolId() {
  76. return toolId;
  77. }
  78. public void setToolId(String toolId) {
  79. this.toolId = toolId;
  80. }
  81. public BigDecimal getStandardCost() {
  82. return standardCost;
  83. }
  84. public void setStandardCost(BigDecimal standardCost) {
  85. this.standardCost = standardCost;
  86. }
  87. public Integer getApplyQty() {
  88. return applyQty;
  89. }
  90. public void setApplyQty(Integer applyQty) {
  91. this.applyQty = applyQty;
  92. }
  93. public String getRemark() {
  94. return remark;
  95. }
  96. public void setRemark(String remark) {
  97. this.remark = remark;
  98. }
  99. public String getOrderRef1() {
  100. return orderRef1;
  101. }
  102. public void setOrderRef1(String orderRef1) {
  103. this.orderRef1 = orderRef1;
  104. }
  105. public String getOrderRef2() {
  106. return orderRef2;
  107. }
  108. public void setOrderRef2(String orderRef2) {
  109. this.orderRef2 = orderRef2;
  110. }
  111. public String getOrderRef3() {
  112. return orderRef3;
  113. }
  114. public void setOrderRef3(String orderRef3) {
  115. this.orderRef3 = orderRef3;
  116. }
  117. public String getOrderRef4() {
  118. return orderRef4;
  119. }
  120. public void setOrderRef4(String orderRef4) {
  121. this.orderRef4 = orderRef4;
  122. }
  123. public String getOrderRef5() {
  124. return orderRef5;
  125. }
  126. public void setOrderRef5(String orderRef5) {
  127. this.orderRef5 = orderRef5;
  128. }
  129. public BigDecimal getUnitCost() {
  130. return unitCost;
  131. }
  132. public void setUnitCost(BigDecimal unitCost) {
  133. this.unitCost = unitCost;
  134. }
  135. public String getOrderRef6() {
  136. return orderRef6;
  137. }
  138. public void setOrderRef6(String orderRef6) {
  139. this.orderRef6 = orderRef6;
  140. }
  141. public String getInstanceCode() {
  142. return instanceCode;
  143. }
  144. public void setInstanceCode(String instanceCode) {
  145. this.instanceCode = instanceCode;
  146. }
  147. }