time.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package common
  2. import (
  3. "database/sql/driver"
  4. "fmt"
  5. "time"
  6. )
  7. const timeFormat1 = "2006-01-02"
  8. const timeFormat2 = "2006-01-02 15:04:05"
  9. const timezone = "Asia/Shanghai"
  10. type Time time.Time
  11. func (t Time) MarshalJSON() ([]byte, error) {
  12. b := make([]byte, 0, len(timeFormat2)+2)
  13. b = append(b, '"')
  14. b = time.Time(t).AppendFormat(b, timeFormat2)
  15. b = append(b, '"')
  16. return b, nil
  17. }
  18. func (t *Time) UnmarshalJSON(data []byte) (err error) {
  19. timeFormat := timeFormat2
  20. if len(data) == 12 {
  21. timeFormat = timeFormat1
  22. }
  23. now, err := time.ParseInLocation(`"`+timeFormat+`"`, string(data), time.Local)
  24. *t = Time(now)
  25. return
  26. }
  27. func (t Time) String() string {
  28. return time.Time(t).Format(timeFormat2)
  29. }
  30. func (t Time) local() time.Time {
  31. loc, _ := time.LoadLocation(timezone)
  32. return time.Time(t).In(loc)
  33. }
  34. func (t Time) Value() (driver.Value, error) {
  35. var zeroTime time.Time
  36. var ti = time.Time(t)
  37. if ti.UnixNano() == zeroTime.UnixNano() {
  38. return nil, nil
  39. }
  40. return ti, nil
  41. }
  42. func (t *Time) Scan(v interface{}) error {
  43. value, ok := v.(time.Time)
  44. if ok {
  45. *t = Time(value)
  46. return nil
  47. }
  48. return fmt.Errorf("can not convert %v to timestamp", v)
  49. }