2020-03-28 09:26:19 +08:00

22 lines
332 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package tools
import "time"
// PluginModel 插件模型
type PluginModel struct {
// 编号
ID string
// 名称
Name string
// 源码
Source string
// 创建时间
CreateTime time.Time
// 最后更新时间
UpdateTime time.Time
// 简介
Description string
// 状态0-正常1-禁用,-1删除
Status int
}