DemandManageListBo.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.goafanti.demand.bo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.fasterxml.jackson.annotation.JsonFormat.Shape;
  4. public class DemandManageListBo extends DemandListBo{
  5. /**
  6. * 信息来源(0-平台采集,1-客户发布)
  7. */
  8. private Integer infoSources;
  9. private String username;
  10. private String employerName;
  11. private Integer province;
  12. /**
  13. * 负责人(营销员)
  14. */
  15. private String principalId;
  16. /**
  17. * 技术经纪人
  18. */
  19. private String techBrokerId;
  20. public String getTechBrokerId() {
  21. return techBrokerId;
  22. }
  23. public void setTechBrokerId(String techBrokerId) {
  24. this.techBrokerId = techBrokerId;
  25. }
  26. @JsonFormat(shape = Shape.STRING)
  27. public Integer getInfoSources() {
  28. return infoSources;
  29. }
  30. public void setInfoSources(Integer infoSources) {
  31. this.infoSources = infoSources;
  32. }
  33. public String getUsername() {
  34. return username;
  35. }
  36. public void setUsername(String username) {
  37. this.username = username;
  38. }
  39. public String getEmployerName() {
  40. return employerName;
  41. }
  42. public void setEmployerName(String employerName) {
  43. this.employerName = employerName;
  44. }
  45. public Integer getProvince() {
  46. return province;
  47. }
  48. public void setProvince(Integer province) {
  49. this.province = province;
  50. }
  51. public String getPrincipalId() {
  52. return principalId;
  53. }
  54. public void setPrincipalId(String principalId) {
  55. this.principalId = principalId;
  56. }
  57. }