t_news_dom.go 240 B

123456789101112
  1. package model
  2. type TNewDom struct {
  3. ID uint `json:"id" gorm:"primarykey"` // 主键ID
  4. Host string `json:"host"`
  5. Dom string `json:"dom"`
  6. }
  7. // TableName DeviceSource 表名
  8. func (TNewDom) TableName() string {
  9. return "t_news_dom"
  10. }