fix:paper #26
|
|
@ -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"`
|
||||
}
|
||||
|
|
@ -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"`
|
||||
}
|
||||
|
|
@ -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"`
|
||||
}
|
||||
Loading…
Reference in New Issue