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
415 B
20 lines
415 B
package charge |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// DateStatis archive_charge_daily_statis archive_charge_weekly_statis archive_charge_monthly_statis |
|
type DateStatis struct { |
|
ID int64 |
|
Count int64 |
|
MoneySection int64 |
|
MoneyTips string |
|
Charge int64 |
|
MinCharge int64 |
|
MaxCharge int64 |
|
CategoryID int64 |
|
CDate time.Time |
|
CTime time.Time |
|
MTime time.Time |
|
}
|
|
|