// Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. package model import ( "time" ) const TableNameSysApp = "sys_app" // SysApp mapped from table type SysApp struct { ID int32 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"` Appid int32 `gorm:"column:appid" json:"appid"` // app id Nickname string `gorm:"column:nickname" json:"nickname"` // app别称 Appname string `gorm:"column:appname" json:"appname"` // app名称标识 Path string `gorm:"column:path" json:"path"` // app安装路径 URL string `gorm:"column:url" json:"url"` // app url地址 Version string `gorm:"column:version" json:"version"` // app版本号 Icon string `gorm:"column:icon" json:"icon"` // App图标 CreateAt time.Time `gorm:"->" json:"create_at" c:"-"` // 创建时间 UpdateAt time.Time `gorm:"->" json:"update_at" c:"-"` // 更新时间 } // TableName SysApp's table name func (*SysApp) TableName() string { return TableNameSysApp }