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.
37 lines
612 B
37 lines
612 B
package model |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// AvDailyCharge av_daily_charge |
|
type AvDailyCharge struct { |
|
AvID int64 |
|
MID int64 |
|
IncCharge int |
|
TotalCharge int |
|
Date time.Time |
|
IsDeleted int |
|
CTime time.Time |
|
MTime time.Time |
|
} |
|
|
|
// UpCharge up_charge |
|
type UpCharge struct { |
|
MID int64 |
|
AvCount int |
|
IncCharge int |
|
TotalCharge int |
|
Date time.Time |
|
IsDeleted int |
|
CTime time.Time |
|
MTime time.Time |
|
} |
|
|
|
// AvChargeRatio av_charge_ratio |
|
type AvChargeRatio struct { |
|
ID int64 |
|
AvID int64 |
|
Ratio int64 |
|
AdjustType int |
|
}
|
|
|