| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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;
- /**
- * 负责人(营销员)
- */
- 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;
- }
- }
|