|
|
@@ -0,0 +1,144 @@
|
|
|
+package com.goafanti.demand.bo;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat.Shape;
|
|
|
+
|
|
|
+public class DemandManageDetailBo extends DemandManageListBo {
|
|
|
+
|
|
|
+ private Integer industryCategoryA;
|
|
|
+
|
|
|
+ private Integer industryCategoryB;
|
|
|
+
|
|
|
+ private String problemDes;
|
|
|
+
|
|
|
+ private String technicalRequirements;
|
|
|
+
|
|
|
+ private String pictureUrl;
|
|
|
+
|
|
|
+ private String textFileUrl;
|
|
|
+
|
|
|
+ private String videoUrl;
|
|
|
+
|
|
|
+ private BigDecimal budgetCost;
|
|
|
+
|
|
|
+ private String fixedCycle;
|
|
|
+
|
|
|
+ private Integer peopleNumber;
|
|
|
+
|
|
|
+ private String fixedScheme;
|
|
|
+
|
|
|
+ private BigDecimal costEscrow;
|
|
|
+
|
|
|
+ private String employerId;
|
|
|
+
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
+ public Integer getIndustryCategoryA() {
|
|
|
+ return industryCategoryA;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIndustryCategoryA(Integer industryCategoryA) {
|
|
|
+ this.industryCategoryA = industryCategoryA;
|
|
|
+ }
|
|
|
+
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
+ public Integer getIndustryCategoryB() {
|
|
|
+ return industryCategoryB;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIndustryCategoryB(Integer industryCategoryB) {
|
|
|
+ this.industryCategoryB = industryCategoryB;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProblemDes() {
|
|
|
+ return problemDes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProblemDes(String problemDes) {
|
|
|
+ this.problemDes = problemDes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTechnicalRequirements() {
|
|
|
+ return technicalRequirements;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTechnicalRequirements(String technicalRequirements) {
|
|
|
+ this.technicalRequirements = technicalRequirements;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPictureUrl() {
|
|
|
+ return pictureUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPictureUrl(String pictureUrl) {
|
|
|
+ this.pictureUrl = pictureUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTextFileUrl() {
|
|
|
+ return textFileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTextFileUrl(String textFileUrl) {
|
|
|
+ this.textFileUrl = textFileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVideoUrl() {
|
|
|
+ return videoUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVideoUrl(String videoUrl) {
|
|
|
+ this.videoUrl = videoUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getBudgetCost() {
|
|
|
+ return budgetCost;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBudgetCost(BigDecimal budgetCost) {
|
|
|
+ this.budgetCost = budgetCost;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFixedCycle() {
|
|
|
+ return fixedCycle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFixedCycle(String fixedCycle) {
|
|
|
+ this.fixedCycle = fixedCycle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPeopleNumber() {
|
|
|
+ return peopleNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPeopleNumber(Integer peopleNumber) {
|
|
|
+ this.peopleNumber = peopleNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFixedScheme() {
|
|
|
+ return fixedScheme;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFixedScheme(String fixedScheme) {
|
|
|
+ this.fixedScheme = fixedScheme;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCostEscrow() {
|
|
|
+ return costEscrow;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCostEscrow(BigDecimal costEscrow) {
|
|
|
+ this.costEscrow = costEscrow;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEmployerId() {
|
|
|
+ return employerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEmployerId(String employerId) {
|
|
|
+ this.employerId = employerId;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|