Files
jx-callback/business/model/app.go
2021-06-24 16:50:06 +08:00

11 lines
223 B
Go

package model
type Apps struct {
ModelIDCULD
Name string `json:"name"` //应用名称
Type int `json:"type"` //应用类型
AppKey string `json:"app_key"` //Key
Status int `json:"status"` //状态
}