|
@@ -1,6 +1,7 @@
|
|
|
package common
|
|
|
|
|
|
import (
|
|
|
+ "fmt"
|
|
|
"gorm.io/gorm"
|
|
|
"math/rand"
|
|
|
"strconv"
|
|
@@ -211,3 +212,72 @@ func TimeStringToGoTime(tm string) time.Time {
|
|
|
}
|
|
|
return time.Time{}
|
|
|
}
|
|
|
+
|
|
|
+// GetTimeDays 时间区间的所有天数
|
|
|
+func GetTimeDays(start_time, stop_time string) []string {
|
|
|
+ tm1, _ := time.Parse("2006-01-02", start_time)
|
|
|
+ tm2, _ := time.Parse("2006-01-02", stop_time)
|
|
|
+ sInt := tm1.Unix()
|
|
|
+ eInt := tm2.Unix()
|
|
|
+ var args []string
|
|
|
+ for {
|
|
|
+ sInt += 86400
|
|
|
+ st := time.Unix(sInt, 0).Format("2006-01-02")
|
|
|
+ args = append(args, st)
|
|
|
+ if sInt > eInt {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ var days []string
|
|
|
+ for i := 0; i < len(args); i++ {
|
|
|
+ parse, _ := time.Parse("2006-01-02", start_time)
|
|
|
+ date := parse.AddDate(0, 0, i).Format("2006-01-02")
|
|
|
+ days = append(days, date)
|
|
|
+ }
|
|
|
+ return Reverse(days)
|
|
|
+}
|
|
|
+
|
|
|
+// GetTimeMonths 时间区间的所有月份
|
|
|
+func GetTimeMonths(start_time, stop_time string) []string {
|
|
|
+ tm1, _ := time.Parse("2006-01", start_time)
|
|
|
+ tm2, _ := time.Parse("2006-01", stop_time)
|
|
|
+ sInt := tm1.Unix()
|
|
|
+ eInt := tm2.Unix()
|
|
|
+ var args []string
|
|
|
+ for {
|
|
|
+ sInt += 86400
|
|
|
+ st := time.Unix(sInt, 0).Format("20060102")
|
|
|
+ args = append(args, st)
|
|
|
+ if sInt > eInt {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ var months []string
|
|
|
+ i := 0
|
|
|
+ for {
|
|
|
+ parse, _ := time.Parse("2006-01-02", start_time)
|
|
|
+ endStr, _ := time.Parse("2006-01-02", stop_time)
|
|
|
+ month := parse.AddDate(0, i, 0).Format("2006-01")
|
|
|
+ month = month + "-01"
|
|
|
+ months = append(months, month)
|
|
|
+ if month == endStr.Format("2006-01")+"-01" || i > 24 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ i++
|
|
|
+ }
|
|
|
+ return Reverse(months)
|
|
|
+}
|
|
|
+
|
|
|
+// Decimal float64 保留2位小数
|
|
|
+func Decimal(value float64) float64 {
|
|
|
+ value, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", value), 64)
|
|
|
+ return value
|
|
|
+}
|
|
|
+
|
|
|
+// Reverse 反转数组
|
|
|
+func Reverse(s []string) []string {
|
|
|
+ for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {
|
|
|
+ s[i], s[j] = s[j], s[i]
|
|
|
+ }
|
|
|
+ return s
|
|
|
+}
|