- package app
- type Ipcast struct {
- Name string `json:"name" gorm:"column:name"`
- DevId string `json:"devId" gorm:"column:device_id"`
- Gid uint `json:"gid" gorm:"column:gid"`
- State uint8 `json:"state" gorm:"column:state"`
- IsDeleted uint8 `json:"isDeleted" gorm:"column:is_deleted"`
- }
- // TableName Ipcast 表名
- func (Ipcast) TableName() string {
- return "ipcast"
- }
|