Pārlūkot izejas kodu

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

anderx 7 gadi atpakaļ
vecāks
revīzija
5e62f3e8fe

+ 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;
+		}
 }