Commit 9e37521a2038d3e9d87a32d9413f855da84b6fe8
1 parent
9c7e46b8
update:修改时间字段修改
Showing
1 changed file
with
5 additions
and
5 deletions
etrade-order/src/main/java/com/diligrp/etrade/order/domain/xreport/BusinessFlowVO.java
... | ... | @@ -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 | 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 | } | ... | ... |