likyh commented on code in PR #4804:
URL:
https://github.com/apache/incubator-devlake/pull/4804#discussion_r1153127294
##########
backend/plugins/tapd/models/workspace.go:
##########
@@ -18,27 +18,76 @@ limitations under the License.
package models
import (
+ "fmt"
"github.com/apache/incubator-devlake/core/models/common"
+ "github.com/apache/incubator-devlake/core/plugin"
helper "github.com/apache/incubator-devlake/helpers/pluginhelper/api"
)
-type TapdWorkspace struct {
- ConnectionId uint64 `gorm:"primaryKey;type:BIGINT NOT NULL"`
- Id uint64 `gorm:"primaryKey;type:BIGINT"
json:"id,string"`
- Name string `gorm:"type:varchar(255)" json:"name"`
- PrettyName string `gorm:"type:varchar(255)"
json:"pretty_name"`
- Category string `gorm:"type:varchar(255)" json:"category"`
- Status string `gorm:"type:varchar(255)" json:"status"`
- Description string `json:"description"`
- BeginDate *helper.CSTTime `json:"begin_date"`
- EndDate *helper.CSTTime `json:"end_date"`
- ExternalOn string `gorm:"type:varchar(255)"
json:"external_on"`
- ParentId uint64 `gorm:"type:BIGINT"
json:"parent_id,string"`
- Creator string `gorm:"type:varchar(255)" json:"creator"`
- Created *helper.CSTTime `json:"created"`
+type ApiTapdWorkspace struct {
+ ConnectionId uint64 `gorm:"primaryKey;type:BIGINT NOT
NULL"`
+ Id uint64 `gorm:"primaryKey;type:BIGINT"
json:"id,string"`
+ Name string `gorm:"type:varchar(255)"
json:"name"`
+ PrettyName string `gorm:"type:varchar(255)"
json:"pretty_name"`
+ Category string `gorm:"type:varchar(255)"
json:"category"`
+ Status string `gorm:"type:varchar(255)"
json:"status"`
+ Description string `json:"description"`
+ BeginDate *helper.CSTTime `json:"begin_date"`
+ EndDate *helper.CSTTime `json:"end_date"`
+ ExternalOn string `gorm:"type:varchar(255)"
json:"external_on"`
+ ParentId uint64 `gorm:"type:BIGINT"
json:"parent_id,string"`
+ Creator string `gorm:"type:varchar(255)"
json:"creator"`
+ Created *helper.CSTTime `json:"created"`
+ TransformationRuleId uint64
`json:"transformationRuleId,omitempty" mapstructure:"transformationRuleId"`
Review Comment:
Convert easy if they have the same columns. And the only difference is
`ParentId` have different json tag.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]