chore: coding style (#4644)

This commit is contained in:
Kevin Wan
2025-02-12 23:48:39 +08:00
committed by GitHub
parent 7a4818da59
commit f113d512e8
5 changed files with 22 additions and 20 deletions

View File

@@ -59,11 +59,11 @@ type (
// Member describes the field of a structure
Member struct {
Name string
// 数据类型字面值,如:string、map[int]string、[]int64、[]*User
// data type, for example, string、map[int]string、[]int64、[]*User
Type Type
Tag string
Comment string
// 成员头顶注释说明
// document for the field
Docs Doc
IsInline bool
}