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.
20 lines
460 B
20 lines
460 B
package up |
|
|
|
// . |
|
const ( |
|
CreditBusinessTypeArchive = int8(1) |
|
) |
|
|
|
//CreditLog . |
|
type CreditLog struct { |
|
Type int8 `json:"type"` |
|
Optyte int8 `json:"optype"` |
|
Reason int64 `json:"reason"` |
|
BusinessType int8 `json:"business_type"` |
|
MID int64 `json:"mid"` |
|
OID int64 `json:"oid"` |
|
UID int64 `json:"uid"` |
|
Content string `json:"content"` |
|
Ctime int64 `json:"ctime"` |
|
Extra interface{} |
|
}
|
|
|