123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package model
- import (
- xtime "go-common/library/time"
- )
- type ArchiveStatStream struct {
- ID int64 `json:"id"`
- Business int `json:"business"`
- StatType int `json:"stat_type"`
- TypeID int `json:"typeid"`
- GroupID int `json:"group_id"`
- UID int `json:"uid"`
- StatTime xtime.Time `json:"stat_time"`
- StatValue int64 `json:"stat_value"`
- Ctime xtime.Time `json:"ctime"`
- Mtime xtime.Time `json:"mtime"`
- State int `json:"state"`
- }
- const (
-
-
- Recheck123 = 1
-
-
- FIRST_RECHECK_IN = 1
-
- FIRST_RECHECK_OUT = 2
-
- SECOND_RECHECK_IN = 3
-
- SECOND_RECHECK_OUT = 4
-
- THIRD_RECHECK_IN = 5
-
- THIRD_RECHECK_OUT = 6
- )
|