fix(tapd): modify story bug because of new api

closes #2792
diff --git a/plugins/tapd/models/story_bug.go b/plugins/tapd/models/story_bug.go
index af7f6a8..de12a43 100644
--- a/plugins/tapd/models/story_bug.go
+++ b/plugins/tapd/models/story_bug.go
@@ -23,7 +23,7 @@
 
 type TapdStoryBug struct {
 	ConnectionId uint64 `gorm:"primaryKey"`
-	WorkspaceId  uint64 `gorm:"primaryKey" json:"workspace_id,string"`
+	WorkspaceId  uint64 `gorm:"primaryKey" json:"workspace_id"`
 	StoryId      uint64 `gorm:"primaryKey" json:"story_id,string"`
 	BugId        uint64 `gorm:"primaryKey" json:"bug_id,string"`
 	common.NoPKModel