sip.go 219 B

12345678910
  1. package isapi
  2. type SipId struct {
  3. Id int `json:"id" xml:"id" gorm:"column:id;"`
  4. UserId int `json:"userId" xml:"userId" gorm:"column:user_id;comment:用户id"`
  5. }
  6. func (SipId) TableName() string {
  7. return "sip"
  8. }