erp_server/model/system.go

14 lines
316 B
Go
Raw Normal View History

2022-10-09 03:39:33 +00:00
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"`
}