| 22 | ) |
| 23 | |
| 24 | type TapdBugStatus struct { |
| 25 | ConnectionId uint64 `gorm:"primaryKey"` |
| 26 | WorkspaceId uint64 `gorm:"primaryKey"` |
| 27 | EnglishName string `gorm:"primaryKey;type:varchar(255)"` |
| 28 | ChineseName string |
| 29 | IsLastStep bool |
| 30 | common.NoPKModel |
| 31 | } |
| 32 | |
| 33 | func (TapdBugStatus) TableName() string { |
| 34 | return "_tool_tapd_bug_statuses" |
nothing calls this directly
no outgoing calls
no test coverage detected