- package model
- // Extension describes a user
- type Extension struct {
- Extension string `xorm:"exten" json:"exten"`
- DevType string `xorm:"devtype" json:"devtype"`
- Priority string `xorm:"priority" json:"priority"`
- Special int `xorm:"special" json:"special"`
- Status string `xorm:"status" json:"status"`
- PaType string `xorm:"patype" json:"patype"`
- Remark string `xorm:"remark" json:"remark"`
- }
- func (*Extension) TableName() string {
- return "t_extension"
- }
|