1234567891011121314151617181920212223242526272829303132333435 |
- package models
- import (
- "eta_gn/eta_chart_lib/global"
- "time"
- )
- // ShareChartRefreshLog 分享图表的日志
- //
- // type ShareChartRefreshLog struct {
- // Id int `orm:"column(id);pk"`
- // Ip string `description:"来源ip"`
- // ChartId int `description:"图表分类id"`
- // CreateTime time.Time
- // }
- type ShareChartRefreshLog struct {
- Id int `gorm:"column:id;primaryKey" description:"主键ID" orm:"column(id);pk"`
- Ip string `gorm:"column:ip" description:"来源IP"`
- ChartId int `gorm:"column:chart_id" description:"图表分类ID"`
- CreateTime time.Time `gorm:"column:create_time" description:"创建时间"`
- }
- // AddShareChartRefreshLog 添加日志
- func AddShareChartRefreshLog(item *ShareChartRefreshLog) (lastId int64, err error) {
- o := global.DmSQL["data"]
- err = o.Create(item).Error
- lastId = int64(item.Id)
- return
- }
- // func AddShareChartRefreshLog(item *ShareChartRefreshLog) (lastId int64, err error) {
- // o := orm.NewOrmUsingDB("data")
- // lastId, err = o.Insert(item)
- // return
- // }
|