- package models
- import (
- "time"
- )
- type ReportGrant struct {
- GrantId int64 `gorm:"column:grant_id"`
- ReportId int64 `gorm:"column:report_id"`
- DepartmentId int64 `gorm:"column:department_id"`
- GrantAdminId int64 `gorm:"column:grant_admin_id"`
- CreateTime time.Time `gorm:"column:create_time"`
- }
|