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.
31 lines
433 B
31 lines
433 B
package model |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// Patch patch |
|
type Patch struct { |
|
Tax int64 |
|
Income int64 |
|
OldTax int64 |
|
OldIncome int64 |
|
MID int64 |
|
TagID int64 |
|
} |
|
|
|
// Av av_income |
|
type Av struct { |
|
AvID int64 |
|
MID int64 |
|
TagID int64 |
|
Income int64 |
|
TaxMoney int64 |
|
} |
|
|
|
// AvBaseIncome av_base_income |
|
type AvBaseIncome struct { |
|
MID int64 |
|
Date time.Time |
|
AvBaseIncome int64 |
|
}
|
|
|