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.

69 lines
1.1 KiB

3 years ago
  1. package com.spring.modules.sampleManagement.entity;
  2. public class PlmTechnicalSpecificationTeam {
  3. /**
  4. * 工厂编码
  5. */
  6. private String site;
  7. /**
  8. * 参数卡编码
  9. */
  10. private String codeNo;
  11. /**
  12. * 员工编码
  13. */
  14. private String operatorId;
  15. /**
  16. * 角色
  17. */
  18. private String type;
  19. /**
  20. *
  21. */
  22. private Integer id;
  23. public String getSite() {
  24. return site;
  25. }
  26. public void setSite(String site) {
  27. this.site = site;
  28. }
  29. public String getCodeNo() {
  30. return codeNo;
  31. }
  32. public void setCodeNo(String codeNo) {
  33. this.codeNo = codeNo;
  34. }
  35. public String getOperatorId() {
  36. return operatorId;
  37. }
  38. public void setOperatorId(String operatorId) {
  39. this.operatorId = operatorId;
  40. }
  41. public String getType() {
  42. return type;
  43. }
  44. public void setType(String type) {
  45. this.type = type;
  46. }
  47. public Integer getId() {
  48. return id;
  49. }
  50. public void setId(Integer id) {
  51. this.id = id;
  52. }
  53. }