14 lines
176 B
Go
14 lines
176 B
Go
|
package charge
|
||
|
|
||
|
import (
|
||
|
"go-common/library/time"
|
||
|
)
|
||
|
|
||
|
// Archive archive detail
|
||
|
type Archive struct {
|
||
|
ID int64
|
||
|
IncCharge int64
|
||
|
TagID int64
|
||
|
Date time.Time
|
||
|
}
|