Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
package upcrmmodel
import (
"go-common/library/time"
)
const (
//BusinessTypeArticleAudit 稿件的审核
BusinessTypeArticleAudit = 1
)
//SimpleCreditLog simple credit log
type SimpleCreditLog struct {
ID uint `json:"-"`
Type int `json:"type"`
OpType int `json:"op_type"`
Reason int `json:"reason"`
BusinessType int `json:"business_type"`
Mid int64 `json:"mid"`
Oid int64 `json:"oid"`
CTime time.Time `json:"ctime"`
}
//SimpleCreditLogWithContent simple credit log with content
type SimpleCreditLogWithContent struct {
SimpleCreditLog
Content string `form:"content" json:"content"` // 日志内容描述
}