BindMaterialResp.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.mes.ui;
  2. public class BindMaterialResp {
  3. private String materialId;
  4. private String materialTitle;
  5. private String craft;
  6. private String batchSn;
  7. private String lastTimes;
  8. private String type;
  9. public String getMaterialId() {
  10. return materialId;
  11. }
  12. public void setMaterialId(String materialId) {
  13. this.materialId = materialId;
  14. }
  15. public String getMaterialTitle() {
  16. return materialTitle;
  17. }
  18. public void setMaterialTitle(String materialTitle) {
  19. this.materialTitle = materialTitle;
  20. }
  21. public String getCraft() {
  22. return craft;
  23. }
  24. public void setCraft(String craft) {
  25. this.craft = craft;
  26. }
  27. public String getBatchSn() {
  28. return batchSn;
  29. }
  30. public void setBatchSn(String batchSn) {
  31. this.batchSn = batchSn;
  32. }
  33. public String getLastTimes() {
  34. return lastTimes;
  35. }
  36. public void setLastTimes(String lastTimes) {
  37. this.lastTimes = lastTimes;
  38. }
  39. public String getType() {
  40. return type;
  41. }
  42. public void setType(String type) {
  43. this.type = type;
  44. }
  45. }