ipcast.go 390 B

1234567891011121314
  1. package app
  2. type Ipcast struct {
  3. Name string `json:"name" gorm:"column:name"`
  4. DevId string `json:"devId" gorm:"column:device_id"`
  5. Gid uint `json:"gid" gorm:"column:gid"`
  6. State uint8 `json:"state" gorm:"column:state"`
  7. IsDeleted uint8 `json:"isDeleted" gorm:"column:is_deleted"`
  8. }
  9. // TableName Ipcast 表名
  10. func (Ipcast) TableName() string {
  11. return "ipcast"
  12. }