plugins_manage.go 1.4 KB

123456789101112131415161718192021222324
  1. // ==========================================================================
  2. // GFast自动生成model代码,无需手动修改,重新生成会自动覆盖.
  3. // 生成日期:2021-08-31 17:58:43
  4. // 生成路径: gfast/app/system/model/plugins_manage.go
  5. // 生成人:gfast
  6. // ==========================================================================
  7. package model
  8. // PluginsManage is the golang structure for table plugins_manage.
  9. type PluginsManage struct {
  10. Id uint `orm:"id,primary" json:"id"` // ID
  11. StoreId int `orm:"store_id" json:"storeId"` // 插件在商城中的id
  12. PName string `orm:"p_name" json:"pName"` // 插件名称英文
  13. PTitle string `orm:"p_title" json:"pTitle"` // 插件名称
  14. PDescription string `orm:"p_description" json:"pDescription"` // 插件介绍
  15. PAuth string `orm:"p_auth" json:"pAuth"` // 作者
  16. IsInstall int `orm:"is_install" json:"isInstall"` // 是否安装
  17. Status int `orm:"status" json:"status"` // 状态
  18. Version string `orm:"version" json:"version"` // 当前版本
  19. Price uint `orm:"price" json:"price"` // 价格
  20. DownloadTimes uint `orm:"download_times" json:"downloadTimes"` // 下载次数
  21. InstallPath string `orm:"install_oath" json:"installPath"` // 安装路径
  22. }