Commit 9e37521a2038d3e9d87a32d9413f855da84b6fe8

Authored by fengliang
1 parent 9c7e46b8

update:修改时间字段修改

etrade-order/src/main/java/com/diligrp/etrade/order/domain/xreport/BusinessFlowVO.java
@@ -98,7 +98,7 @@ public class BusinessFlowVO implements Serializable { @@ -98,7 +98,7 @@ public class BusinessFlowVO implements Serializable {
98 /** 98 /**
99 * 更新时间 99 * 更新时间
100 */ 100 */
101 - private LocalDateTime modified_time; 101 + private LocalDateTime modifiedTime;
102 102
103 /** 103 /**
104 * 产品总价 104 * 产品总价
@@ -402,11 +402,11 @@ public class BusinessFlowVO implements Serializable { @@ -402,11 +402,11 @@ public class BusinessFlowVO implements Serializable {
402 this.createdTime = createdTime; 402 this.createdTime = createdTime;
403 } 403 }
404 404
405 - public LocalDateTime getModified_time() {  
406 - return modified_time; 405 + public LocalDateTime getModifiedTime() {
  406 + return modifiedTime;
407 } 407 }
408 408
409 - public void setModified_time(LocalDateTime modified_time) {  
410 - this.modified_time = modified_time; 409 + public void setModifiedTime(LocalDateTime modifiedTime) {
  410 + this.modifiedTime = modifiedTime;
411 } 411 }
412 } 412 }