bi_dashboard_home_page.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package bi_dashboard
  2. import (
  3. "eta_gn/eta_api/global"
  4. "time"
  5. )
  6. type BiDashboardHomePage struct {
  7. BiDashboardHomePageId int `gorm:"primaryKey;autoIncrement;comment:'bi首页看板id'"`
  8. BiDashboardId int `gorm:"type:int(10);default:null;comment:'看板id'"`
  9. AdminId int `gorm:"type:int(10);default:null;comment:'1图表 2表格'"`
  10. CreateTime time.Time `gorm:"type:datetime;comment:'创建时间'"`
  11. ModifyTime time.Time `gorm:"type:datetime;comment:'更新时间'"`
  12. FromType int `gorm:"type:int(10);default:null;comment:'来源,前端跳转用 1我的 2共享 3公共"`
  13. }
  14. // tableName
  15. func (m *BiDashboardHomePage) TableName() string {
  16. return "bi_dashboard_home_page"
  17. }
  18. // get
  19. func GetBiDashboardHomePageById(id int) (item *BiDashboardHomePage, err error) {
  20. err = global.DEFAULT_DmSQL.Where("admin_id = ?", id).First(&item).Error
  21. return
  22. }
  23. // save
  24. func SaveBiDashboardHomePage(item *BiDashboardHomePage) (err error) {
  25. return global.DEFAULT_DmSQL.Save(item).Error
  26. }
  27. type SaveHomePageReq struct {
  28. BiDashboardId int `description:"看板id"`
  29. FromType int `description:"来源,前端跳转用 1我的 2共享 3公共"`
  30. }