Files
jx-print/model/model.go
2021-07-05 18:04:29 +08:00

16 lines
307 B
Go

package model
import "time"
const (
SessionKey = "jxCode"
)
type ModelIDCULD struct {
ID int `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
LastOperator string `json:"last_operator"`
DeletedAt time.Time `json:"deleted_at"`
}