- package model
- // CallForward 呼叫转移
- type CallForward struct {
- ID int64 `xorm:"id pk autoincr" json:"id"`
- Extension string `xorm:"exten" json:"extension"`
- FwType string `xorm:"fw_type" json:"fw_type"`
- FwDest string `xorm:"fw_dest" json:"fw_dest"`
- Timeout int `xorm:"timeout" json:"timeout"`
- Timerule int `xorm:"timerule" json:"timerule"`
- Enable bool `xorm:"enable" json:"enable"`
- }
- func (*CallForward) TableName() string {
- return "t_call_forward"
- }
|