@@ -427,3 +427,7 @@ func IsJdSb(period string) bool {
}
return false
+
+func GetMonthEnd(t time.Time) time.Time {
+ return t.AddDate(0, 1, -t.Day())
+}