Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package archive
import "go-common/library/time"
// VoteType 投票业务
const VoteType int8 = 2
// BIZ business
type BIZ struct {
ID int64 `json:"id"`
Type int32 `json:"type"`
Aid int64 `json:"aid"`
Uid int64 `json:"uid"`
State int8 `json:"state"`
Remark string `json:"remark"`
Data string `json:"data"`
Ctime time.Time `json:"ctime"`
Mtime time.Time `json:"mtime"`
}