Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkgos committed Dec 6, 2023
1 parent 6ad18c2 commit c4cb4f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/protoenum/enum.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
// EnumValue 枚举的枚举项
type EnumValue struct {
Number int // 编号
Value string // 值
CamelValue string // 驼峰值
TrimValue string // 值截断EnumName前缀
Value string // 值,例: Status_Enabled
CamelValue string // 驼峰值,例: StatusEnabled
TrimValue string // 值截断EnumName前缀,例: Enabled(EnumName=Status)
Mapping string // 映射值
Comment string // 注释
IsDuplicate bool // 是否是副本
Expand Down

0 comments on commit c4cb4f9

Please sign in to comment.