morning_meeting.go 179 B

12345678910111213
  1. package services
  2. import (
  3. "fmt"
  4. "hongze/hongze_cygx/utils"
  5. "time"
  6. )
  7. func init() {
  8. DayTime := time.Now().AddDate(0, 0, -46).Format(utils.FormatDate)
  9. fmt.Println(DayTime)
  10. }