You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
479 B
19 lines
479 B
package model |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
//MoralLog is. |
|
type MoralLog struct { |
|
Mid int64 `json:"mid"` |
|
IP int64 `json:"ip"` |
|
Operater string `json:"operater"` |
|
Origin int8 `json:"origin"` |
|
Reason string `json:"reason"` |
|
Remark string `json:"remark"` |
|
Status int8 `json:"status"` |
|
FromMoral int64 `json:"from_moral"` |
|
ToMoral int64 `json:"to_moral"` |
|
ModifyTime time.Time `json:"modify_time"` |
|
}
|
|
|