DemandManageListBo.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. * 是否在首页 0-否 1-是
  14. */
  15. private Integer hot;
  16. /**
  17. * 是否属于精品 0- 否 1-是
  18. */
  19. private Integer boutique;
  20. /**
  21. * 负责人(营销员)
  22. */
  23. private String principalId;
  24. /**
  25. * 技术经纪人
  26. */
  27. private String techBrokerId;
  28. public String getTechBrokerId() {
  29. return techBrokerId;
  30. }
  31. public void setTechBrokerId(String techBrokerId) {
  32. this.techBrokerId = techBrokerId;
  33. }
  34. @JsonFormat(shape = Shape.STRING)
  35. public Integer getInfoSources() {
  36. return infoSources;
  37. }
  38. public void setInfoSources(Integer infoSources) {
  39. this.infoSources = infoSources;
  40. }
  41. public String getUsername() {
  42. return username;
  43. }
  44. public void setUsername(String username) {
  45. this.username = username;
  46. }
  47. public String getEmployerName() {
  48. return employerName;
  49. }
  50. public void setEmployerName(String employerName) {
  51. this.employerName = employerName;
  52. }
  53. public Integer getProvince() {
  54. return province;
  55. }
  56. public void setProvince(Integer province) {
  57. this.province = province;
  58. }
  59. public String getPrincipalId() {
  60. return principalId;
  61. }
  62. public void setPrincipalId(String principalId) {
  63. this.principalId = principalId;
  64. }
  65. @JsonFormat(shape = Shape.STRING)
  66. public Integer getBoutique() {
  67. return boutique;
  68. }
  69. public void setBoutique(Integer boutique) {
  70. this.boutique = boutique;
  71. }
  72. @JsonFormat(shape = Shape.STRING)
  73. public Integer getHot() {
  74. return hot;
  75. }
  76. public void setHot(Integer hot) {
  77. this.hot = hot;
  78. }
  79. }