| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package com.goafanti.demand.bo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonFormat.Shape;
- public class DemandManageListBo extends DemandListBo {
- /**
- * 信息来源(0-平台采集,1-客户发布)
- */
- private Integer infoSources;
- private String username;
- private String employerName;
- private Integer province;
- /**
- * 是否在首页 0-否 1-是
- */
- private Integer hot;
- /**
- * 是否属于精品 0- 否 1-是
- */
- private Integer boutique;
- /**
- * 负责人(营销员)
- */
- private String principalId;
- /**
- * 技术经纪人
- */
- private String techBrokerId;
- public String getTechBrokerId() {
- return techBrokerId;
- }
- public void setTechBrokerId(String techBrokerId) {
- this.techBrokerId = techBrokerId;
- }
- @JsonFormat(shape = Shape.STRING)
- public Integer getInfoSources() {
- return infoSources;
- }
- public void setInfoSources(Integer infoSources) {
- this.infoSources = infoSources;
- }
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- public String getEmployerName() {
- return employerName;
- }
- public void setEmployerName(String employerName) {
- this.employerName = employerName;
- }
- public Integer getProvince() {
- return province;
- }
- public void setProvince(Integer province) {
- this.province = province;
- }
- public String getPrincipalId() {
- return principalId;
- }
- public void setPrincipalId(String principalId) {
- this.principalId = principalId;
- }
-
- @JsonFormat(shape = Shape.STRING)
- public Integer getBoutique() {
- return boutique;
- }
- public void setBoutique(Integer boutique) {
- this.boutique = boutique;
- }
- @JsonFormat(shape = Shape.STRING)
- public Integer getHot() {
- return hot;
- }
- public void setHot(Integer hot) {
- this.hot = hot;
- }
- }
|