EntTag.proto 562 B

123456789101112131415161718192021222324
  1. syntax = "proto3";
  2. package proto.api;
  3. import "google/protobuf/descriptor.proto";
  4. import "protoc-gen-openapiv2/options/annotations.proto";
  5. import "api/Common.proto";
  6. option go_package = "api/v1";
  7. option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
  8. info : {title : "标签实体", version : "1.0", description : "实体"}
  9. host : ""
  10. };
  11. message EntTag {
  12. // 标签名称
  13. string tag_name = 1;
  14. // 标签code
  15. string tag_code = 2;
  16. // 标签类型
  17. DEVICE_USE_TYPE tag_type = 3;
  18. // tag的图片
  19. repeated string tag_images = 4;
  20. }