- package model
-
- import (
- "time"
- )
-
- type TaWechatImg struct {
- MediaId string `xorm:"not null pk VARCHAR(64)"`
- Name string `xorm:"VARCHAR(100)"`
- UpdateTime time.Time `xorm:"DATETIME"`
- Url string `xorm:"TEXT"`
- OrgId string `xorm:"VARCHAR(64)"`
- CreateDate time.Time `xorm:"DATETIME"`
- Status int `xorm:"SMALLINT(6)"`
- }
|