소스 검색

我的需求列表新增创建时间

anderx 7 년 전
부모
커밋
5e62f3e8fe
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      src/main/java/com/goafanti/demand/bo/AppDemandBo.java

+ 7 - 0
src/main/java/com/goafanti/demand/bo/AppDemandBo.java

@@ -24,6 +24,7 @@ public class AppDemandBo {
 	    private BigDecimal fixedBudget;//固定预算
 	    private BigDecimal crowdCost;//资金需求金额
 	    private BigDecimal budgetCost;
+	    private Date createTime;
 		public int getFieldA() {
 			return fieldA;
 		}
@@ -144,4 +145,10 @@ public class AppDemandBo {
 		public void setBudgetCost(BigDecimal budgetCost) {
 			this.budgetCost = budgetCost;
 		}
+		public Date getCreateTime() {
+			return createTime;
+		}
+		public void setCreateTime(Date createTime) {
+			this.createTime = createTime;
+		}
 }