feat:优化项目信息

This commit is contained in:
henry
2022-02-08 11:05:47 +08:00
parent 252182f089
commit 46476267aa
13 changed files with 125 additions and 37 deletions

14
app/service/es_test.go Normal file
View File

@ -0,0 +1,14 @@
package service
import "testing"
func TestESAchievement_Create(t *testing.T) {
manage := NewESAchievement(
WithAchievementID(1),
WithAchievementTitle("测试一"),
WithAchievementIndustry("测试测试"),
WithAchievementKeyword("关键词1关键词2"),
)
err := manage.Create()
t.Log(err)
}