荣鑫后端
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.

140 lines
2.9 KiB

5 years ago
  1. package com.gaotao.modules.base.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import org.apache.poi.ss.formula.functions.T;
  4. import org.springframework.format.annotation.DateTimeFormat;
  5. import javax.xml.crypto.Data;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. public class RoutingToolData {
  9. private String site;
  10. private String partNo;
  11. private String revNo;
  12. private Float itemNo;
  13. private String toolID;
  14. private String toolDescription;
  15. private String spec;
  16. private Float toolQty;
  17. private String familyID;
  18. private String familyName;
  19. private String active;
  20. private String remark;
  21. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  22. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  23. private Date createDate;
  24. private String createdBy;
  25. public String getSite() {
  26. return site;
  27. }
  28. public void setSite(String site) {
  29. this.site = site;
  30. }
  31. public String getRevNo() {
  32. return revNo;
  33. }
  34. public void setRevNo(String revNo) {
  35. this.revNo = revNo;
  36. }
  37. public Float getItemNo() {
  38. return itemNo;
  39. }
  40. public void setItemNo(Float itemNo) {
  41. this.itemNo = itemNo;
  42. }
  43. public String getToolID() {
  44. return toolID;
  45. }
  46. public void setToolID(String toolID) {
  47. this.toolID = toolID;
  48. }
  49. public String getToolDescription() {
  50. return toolDescription;
  51. }
  52. public void setToolDescription(String toolDescription) {
  53. this.toolDescription = toolDescription;
  54. }
  55. public String getSpec() {
  56. return spec;
  57. }
  58. public void setSpec(String spec) {
  59. this.spec = spec;
  60. }
  61. public Float getToolQty() {
  62. return toolQty;
  63. }
  64. public void setToolQty(Float toolQty) {
  65. this.toolQty = toolQty;
  66. }
  67. public String getFamilyID() {
  68. return familyID;
  69. }
  70. public void setFamilyID(String familyID) {
  71. this.familyID = familyID;
  72. }
  73. public String getFamilyName() {
  74. return familyName;
  75. }
  76. public void setFamilyName(String familyName) {
  77. this.familyName = familyName;
  78. }
  79. public String getActive() {
  80. return active;
  81. }
  82. public void setActive(String active) {
  83. this.active = active;
  84. }
  85. public String getRemark() {
  86. return remark;
  87. }
  88. public void setRemark(String remark) {
  89. this.remark = remark;
  90. }
  91. public Date getCreateDate() {
  92. return createDate;
  93. }
  94. public void setCreateDate(Date createDate) {
  95. this.createDate = createDate;
  96. }
  97. public String getCreatedBy() {
  98. return createdBy;
  99. }
  100. public void setCreatedBy(String createdBy) {
  101. this.createdBy = createdBy;
  102. }
  103. public String getPartNo() {
  104. return partNo;
  105. }
  106. public void setPartNo(String partNo) {
  107. this.partNo = partNo;
  108. }
  109. }