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.
28 lines
499 B
28 lines
499 B
package income |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// UpArchStatis up archive statistics |
|
type UpArchStatis struct { |
|
MID int64 |
|
WeeklyDate time.Time |
|
WeeklyAIDs string |
|
MonthlyDate time.Time |
|
MonthlyAIDs string |
|
} |
|
|
|
// UpAvStatis up av statistics |
|
type UpAvStatis struct { |
|
ID int64 |
|
MID int64 |
|
WeeklyDate time.Time |
|
WeeklyAvIDs string |
|
MonthlyDate time.Time |
|
MonthlyAvIDs string |
|
IsDeleted int |
|
CTime time.Time |
|
MTime time.Time |
|
DBState int |
|
}
|
|
|