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.

202 lines
4.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. package com.spring.modules.Tooling.data;
  2. public class IfsToolInstanceData extends IfsToolData {
  3. private String toolInstance;
  4. private String description;
  5. private String desc;
  6. private String lastCalibrationDate;
  7. private String nextCalibrationDate;//
  8. private String objectId;
  9. private String normalWorkCenterNo;
  10. private String normalProductionLine;
  11. private String noteText;// 备注
  12. private String toolDiscrimination;
  13. private String toolLinearity;
  14. private String toolRepeatability;
  15. private String toolBias;
  16. private String toolStability;
  17. private String toolReproducibility;
  18. private String toolResourceId;
  19. private String toolResourceDesc;
  20. private String lastUsageReport;
  21. private String normalWorkCenterDesc;
  22. private String state;
  23. private String normalProductionLineDesc;
  24. public IfsToolInstanceData() {
  25. super();
  26. // TODO Auto-generated constructor stub
  27. }
  28. public String getToolInstance() {
  29. return toolInstance;
  30. }
  31. public void setToolInstance(String toolInstance) {
  32. this.toolInstance = toolInstance;
  33. }
  34. public String getDescription() {
  35. return description;
  36. }
  37. public void setDescription(String description) {
  38. this.description = description;
  39. this.desc = description;
  40. }
  41. public String getDesc() {
  42. return desc;
  43. }
  44. public void setDesc(String desc) {
  45. this.desc = desc;
  46. }
  47. public String getNormalWorkCenterDesc() {
  48. return normalWorkCenterDesc;
  49. }
  50. public void setNormalWorkCenterDesc(String normalWorkCenterDesc) {
  51. this.normalWorkCenterDesc = normalWorkCenterDesc;
  52. }
  53. @Override
  54. public String getState() {
  55. return state;
  56. }
  57. @Override
  58. public void setState(String state) {
  59. this.state = state;
  60. }
  61. public String getLastCalibrationDate() {
  62. return lastCalibrationDate;
  63. }
  64. public void setLastCalibrationDate(String lastCalibrationDate) {
  65. this.lastCalibrationDate = lastCalibrationDate;
  66. }
  67. public String getNextCalibrationDate() {
  68. return nextCalibrationDate;
  69. }
  70. public void setNextCalibrationDate(String nextCalibrationDate) {
  71. this.nextCalibrationDate = nextCalibrationDate;
  72. }
  73. public String getObjectId() {
  74. return objectId;
  75. }
  76. public void setObjectId(String objectId) {
  77. this.objectId = objectId;
  78. }
  79. public String getNormalWorkCenterNo() {
  80. return normalWorkCenterNo;
  81. }
  82. public void setNormalWorkCenterNo(String normalWorkCenterNo) {
  83. this.normalWorkCenterNo = normalWorkCenterNo;
  84. }
  85. public String getNormalProductionLine() {
  86. return normalProductionLine;
  87. }
  88. public void setNormalProductionLine(String normalProductionLine) {
  89. this.normalProductionLine = normalProductionLine;
  90. }
  91. public String getNoteText() {
  92. return noteText;
  93. }
  94. public void setNoteText(String noteText) {
  95. this.noteText = noteText;
  96. }
  97. public String getToolDiscrimination() {
  98. return toolDiscrimination;
  99. }
  100. public void setToolDiscrimination(String toolDiscrimination) {
  101. this.toolDiscrimination = toolDiscrimination;
  102. }
  103. public String getToolLinearity() {
  104. return toolLinearity;
  105. }
  106. public void setToolLinearity(String toolLinearity) {
  107. this.toolLinearity = toolLinearity;
  108. }
  109. public String getToolRepeatability() {
  110. return toolRepeatability;
  111. }
  112. public void setToolRepeatability(String toolRepeatability) {
  113. this.toolRepeatability = toolRepeatability;
  114. }
  115. public String getToolBias() {
  116. return toolBias;
  117. }
  118. public void setToolBias(String toolBias) {
  119. this.toolBias = toolBias;
  120. }
  121. public String getToolStability() {
  122. return toolStability;
  123. }
  124. public void setToolStability(String toolStability) {
  125. this.toolStability = toolStability;
  126. }
  127. public String getToolReproducibility() {
  128. return toolReproducibility;
  129. }
  130. public void setToolReproducibility(String toolReproducibility) {
  131. this.toolReproducibility = toolReproducibility;
  132. }
  133. public String getToolResourceId() {
  134. return toolResourceId;
  135. }
  136. public void setToolResourceId(String toolResourceId) {
  137. this.toolResourceId = toolResourceId;
  138. }
  139. public String getToolResourceDesc() {
  140. return toolResourceDesc;
  141. }
  142. public void setToolResourceDesc(String toolResourceDesc) {
  143. this.toolResourceDesc = toolResourceDesc;
  144. }
  145. public String getLastUsageReport() {
  146. return lastUsageReport;
  147. }
  148. public void setLastUsageReport(String lastUsageReport) {
  149. this.lastUsageReport = lastUsageReport;
  150. }
  151. public String getNormalProductionLineDesc() {
  152. return normalProductionLineDesc;
  153. }
  154. public void setNormalProductionLineDesc(String normalProductionLineDesc) {
  155. this.normalProductionLineDesc = normalProductionLineDesc;
  156. }
  157. }