feat:完善信息

This commit is contained in:
henry
2021-10-13 14:35:24 +08:00
parent 21dc62ba8e
commit 8866b83cfb
16 changed files with 4728 additions and 46 deletions

View File

@ -1,6 +1,10 @@
package model
// SysIndustry 行业领域数据模型
type SysIndustry struct {
Model
ModelDeleted
ModelAt
}
func (*SysIndustry) TableName() string {

View File

@ -0,0 +1,16 @@
package model
// SysResearch 研究领域数据模型
type SysResearch struct {
Model
ModelDeleted
ModelAt
}
func (*SysResearch) TableName() string {
return "sys_research"
}
func NewSysResearch() *SysResearch {
return &SysResearch{}
}