syntax = "proto3"; package aeus; import "google/protobuf/descriptor.proto"; option go_package = "git.nobla.cn/golang/aeus/pkg/proto/rest"; extend google.protobuf.FieldOptions { // ormable will cause orm code to be generated for this field RestFieldOptions field = 52118; } message RestFieldOptions { string gorm = 1; string comment = 2; string scenarios= 3; string position= 4; string format = 5; string props = 6; string rule= 7; } extend google.protobuf.MessageOptions { // ormable will cause orm code to be generated for this message/object RestMessageOptions rest = 52119; } message RestMessageOptions { string table = 1; }