DeliveruSearchBean.java 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.uas.rd_equipment.bean;
  2. /**
  3. * Created by cjh-sail on 2023-06-01
  4. */
  5. public class DeliveruSearchBean {
  6. private String PR_CODE;
  7. private String PR_DETAIL;
  8. private String PR_SPEC;
  9. private boolean checked;
  10. public boolean getChecked() {
  11. return checked;
  12. }
  13. public void setChecked(boolean checked) {
  14. this.checked = checked;
  15. }
  16. public String getPR_CODE() {
  17. return PR_CODE;
  18. }
  19. public void setPR_CODE(String PR_CODE) {
  20. this.PR_CODE = PR_CODE;
  21. }
  22. public String getPR_DETAIL() {
  23. return PR_DETAIL;
  24. }
  25. public void setPR_DETAIL(String PR_DETAIL) {
  26. this.PR_DETAIL = PR_DETAIL;
  27. }
  28. public String getPR_SPEC() {
  29. return PR_SPEC;
  30. }
  31. public void setPR_SPEC(String PR_SPEC) {
  32. this.PR_SPEC = PR_SPEC;
  33. }
  34. }