UserAbility.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package com.goafanti.common.model;
  2. public class UserAbility {
  3. private String id;
  4. private String uid;
  5. /**
  6. * 能力标签
  7. */
  8. private String abilityLabel;
  9. /**
  10. * 知识产权对企业竞争力的作用
  11. */
  12. private String intellectRight;
  13. /**
  14. * 科技成果转化情况
  15. */
  16. private String scienceAchievement;
  17. /**
  18. * 研究开发与技术创新组织管理情况
  19. */
  20. private String researchInnovation;
  21. /**
  22. * 管理与科技人员情况
  23. */
  24. private String personnel;
  25. public String getId() {
  26. return id;
  27. }
  28. public void setId(String id) {
  29. this.id = id;
  30. }
  31. public String getUid() {
  32. return uid;
  33. }
  34. public void setUid(String uid) {
  35. this.uid = uid;
  36. }
  37. public String getAbilityLabel() {
  38. return abilityLabel;
  39. }
  40. public void setAbilityLabel(String abilityLabel) {
  41. this.abilityLabel = abilityLabel;
  42. }
  43. public String getIntellectRight() {
  44. return intellectRight;
  45. }
  46. public void setIntellectRight(String intellectRight) {
  47. this.intellectRight = intellectRight;
  48. }
  49. public String getScienceAchievement() {
  50. return scienceAchievement;
  51. }
  52. public void setScienceAchievement(String scienceAchievement) {
  53. this.scienceAchievement = scienceAchievement;
  54. }
  55. public String getResearchInnovation() {
  56. return researchInnovation;
  57. }
  58. public void setResearchInnovation(String researchInnovation) {
  59. this.researchInnovation = researchInnovation;
  60. }
  61. public String getPersonnel() {
  62. return personnel;
  63. }
  64. public void setPersonnel(String personnel) {
  65. this.personnel = personnel;
  66. }
  67. }