mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 16:30:29 +08:00
fix: relocate cwos-portal decompiled output to correct path; remove nested directory
Former-commit-id: dc30d42a8c55ed8b2382a41dc2434233fbed9930
This commit is contained in:
+2
-2
@@ -31,11 +31,11 @@ public class YearlyShardingAlgorithm implements PreciseShardingAlgorithm<Long>,
|
||||
Integer upperBoundYear = Integer.valueOf(2147483647);
|
||||
if (valueRange.hasLowerBound()) {
|
||||
lowerBoundYear = Integer.valueOf(Integer
|
||||
.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.lowerEndpoint()).longValue()), "YYYY")));
|
||||
.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.lowerEndpoint()).longValue()), "yyyy")));
|
||||
}
|
||||
if (valueRange.hasUpperBound()) {
|
||||
upperBoundYear = Integer.valueOf(Integer
|
||||
.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.upperEndpoint()).longValue()), "YYYY")));
|
||||
.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.upperEndpoint()).longValue()), "yyyy")));
|
||||
}
|
||||
for (String targetTable : availableTargetNames) {
|
||||
Integer tableNameSuffix = Integer.valueOf(Integer.parseInt(
|
||||
|
||||
Reference in New Issue
Block a user