更新pb目录

This commit is contained in:
ayflying
2025-03-25 14:14:48 +08:00
parent 4b77cd140d
commit d9ab1be2e7
2 changed files with 238 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
syntax = "proto3";
package package;
option go_package = "github.com/ayflying/utility_go/api/pkg/v1";
// 定义 NoticeType 枚举
enum NoticeType {
DINGTALK = 0;
WECHAT = 1;
EMAIL = 2;
SMS = 3;
VOICE = 4;
}
//排行榜数据
message RankData {
int64 id = 1;
int64 score = 2;
int32 rank = 3;
int64 update_ts = 4;
}