12345678910111213141516171819202122232425262728293031323334 |
- package models
- import (
- "github.com/beego/beego/v2/client/orm"
- "time"
- )
- type CygxYanxuanSpecialApprovalLog struct {
- ApprovalLogId int `orm:"column(approval_log_id);pk"`
- UserId int
- CreateTime time.Time
- ModifyTime time.Time
- Content string
- Tags string
- ApprovalStatus int
- ImgUrl string
- DocUrl string
- Reason string
- Title string
- Type int
- CompanyTags string
- IndustryTags string
- YanxuanSpecialId int
- AdminName string
- AdminUserId int
- SpecialName string
- NickName string
- }
- func AddCygxYanxuanSpecialApprovalLog(item *CygxYanxuanSpecialApprovalLog) (err error) {
- o := orm.NewOrm()
- _, err = o.Insert(item)
- return
- }
|