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
360 B
20 lines
360 B
package income |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// AvChargeStatis av charge statistics |
|
type AvChargeStatis struct { |
|
ID int64 |
|
AvID int64 |
|
MID int64 |
|
TagID int64 |
|
IsOriginal int |
|
UploadTime time.Time |
|
TotalCharge int64 |
|
IsDeleted int |
|
CTime time.Time |
|
MTime time.Time |
|
DBState int // 1-insert 2-update |
|
}
|
|
|