(long year)
| 81 | //region 添加属性值 |
| 82 | |
| 83 | public DatePlus addYear(long year) { |
| 84 | this.localDateTime = this.localDateTime.plusYears(year); |
| 85 | return this; |
| 86 | } |
| 87 | |
| 88 | public DatePlus addMonth(long month) { |
| 89 | this.localDateTime = this.localDateTime.plusMonths(month); |
nothing calls this directly
no outgoing calls
no test coverage detected