14 lines
316 B
Go
14 lines
316 B
Go
|
package model
|
||
|
|
||
|
type Logging struct {
|
||
|
Model
|
||
|
|
||
|
Machine string `json:"machine"`
|
||
|
StoreId uint32 `json:"store_id" gorm:"index"` // 门店id
|
||
|
StoreName string `json:"store_name"`
|
||
|
Operator string `json:"operator"`
|
||
|
Function string `json:"function"`
|
||
|
Event string `json:"event"`
|
||
|
Ip string `json:"ip"`
|
||
|
}
|