更改 YearQuarter 字符串格式。

dev
ZhouXY108 2024-10-12 02:00:33 +08:00
parent be0e21022e
commit 1b0cf2bd42
1 changed files with 2 additions and 2 deletions

View File

@ -237,12 +237,12 @@ public final class YearQuarter implements Comparable<YearQuarter>, Serializable
// toString
/**
* {@link YearQuarter} "Q3 2024"
* {@link YearQuarter} "2024 Q3"
*
* @return {@link YearQuarter}
*/
@Override
public String toString() {
return this.quarter.name() + " " + this.year;
return this.year + " " + this.quarter.name();
}
}