fix:paper #26

Merged
wonderful merged 1 commits from wonderful/share-knowledge-server:wmh_develop into develop 2022-03-09 17:06:33 +08:00
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/*
* @Descripttion:
* @Author: hang
* @version:
* @Date: 2022-03-09 17:01:13
* @LastEditors: hang
* @LastEditTime: 2022-03-09 17:01:14
*/
package model
type PaperCodeSource struct {
*Model
Paper *Paper `json:"-"`
PaperID *int64 `json:"-"`
OwnerType string `json:"owner_type"`
OwnerValue string `json:"owner_value"`
}

View File

@ -0,0 +1,17 @@
/*
* @Descripttion:
* @Author: hang
* @version:
* @Date: 2022-03-09 17:02:35
* @LastEditors: hang
* @LastEditTime: 2022-03-09 17:02:36
*/
package model
type PaperDatasetSource struct {
*Model
Paper *Paper `json:"-"`
PaperID *int64 `json:"-"`
OwnerType string `json:"owner_type"`
OwnerValue string `json:"owner_value"`
}

View File

@ -0,0 +1,17 @@
/*
* @Descripttion:
* @Author: hang
* @version:
* @Date: 2022-03-09 17:03:23
* @LastEditors: hang
* @LastEditTime: 2022-03-09 17:03:36
*/
package model
type PaperPptSource struct {
*Model
Paper *Paper `json:"-"`
PaperID *int64 `json:"-"`
OwnerType string `json:"owner_type"`
OwnerValue string `json:"owner_value"`
}