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.
53 lines
769 B
53 lines
769 B
package model |
|
|
|
import ( |
|
"time" |
|
) |
|
|
|
// DBElecUPRank . |
|
type DBElecUPRank struct { |
|
ID int64 |
|
UPMID int64 |
|
PayMID int64 |
|
PayAmount int64 |
|
Ver int64 |
|
Hidden bool |
|
CTime time.Time |
|
MTime time.Time |
|
} |
|
|
|
// DBElecAVRank . |
|
type DBElecAVRank struct { |
|
ID int64 |
|
AVID int64 |
|
UPMID int64 |
|
PayMID int64 |
|
PayAmount int64 |
|
Ver int64 |
|
Hidden bool |
|
CTime time.Time |
|
MTime time.Time |
|
} |
|
|
|
// DBElecMessage . |
|
type DBElecMessage struct { |
|
ID int64 |
|
Ver int64 |
|
AVID int64 |
|
UPMID int64 |
|
PayMID int64 |
|
Message string |
|
Replied bool |
|
Hidden bool |
|
CTime time.Time |
|
MTime time.Time |
|
} |
|
|
|
// DBElecUserSetting . |
|
type DBElecUserSetting struct { |
|
ID int64 |
|
MID int64 |
|
Value int |
|
CTime time.Time |
|
MTime time.Time |
|
}
|
|
|