app_info.go 1.4 KB

1234567891011121314151617
  1. package viewmodels
  2. type App struct {
  3. AppId int64 `json:"appId" xorm:"'app_id' bigint pk comment('主键ID') "`
  4. AppCatId int64 `json:"appCatId" xorm:"'app_cat_id' bigint pk comment('主键ID') "`
  5. AppTitle string `json:"appTitle" xorm:"'app_title' varchar(127) comment('名称') "`
  6. AppCode string `json:"appCode" xorm:"'app_code' varchar(127) comment('编码') "`
  7. AppParam string `json:"appParam" xorm:"'app_param' varchar(127) comment('Param') "`
  8. AppUrl string `json:"appUrl" xorm:"'app_url' varchar(511) comment('Url') "`
  9. AppLog string `json:"appLogo" xorm:"'app_logo' varchar(255) comment('Url') "`
  10. Status int64 `json:"status" xorm:"'status' bigint comment('Status') "`
  11. IfStore int64 `json:"ifStore" xorm:"'if_store' bigint comment('Status') "`
  12. AppKey string `json:"appKey" xorm:"'app_key' varchar(255) comment('Url') "`
  13. AppSecret string `json:"appSecret" xorm:"'app_secret' varchar(255) comment('Url') "`
  14. AppDesc string `json:"appDesc" xorm:"'app_desc' varchar(50) comment('描述') "`
  15. IsFixed int64 `json:"isFixed" xorm:"'is_fixed' int comment('是否可修改') "`
  16. }