bulletin.proto 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. syntax = "proto3";
  2. package ticket.service.item.v1;
  3. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  4. option go_package = "v1";
  5. // The bulletin service definition.
  6. service Bulletin {
  7. rpc BulletinInfo (BulletinInfoRequest) returns (BulletinReply) {}
  8. rpc BulletinCheck (BulletinCheckRequest) returns (BulletinReply) {}
  9. rpc BulletinState (BulletinStateRequest) returns (BulletinReply) {}
  10. }
  11. // The response message containing the bulletin info
  12. message BulletinInfo {
  13. int64 id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"min=1\"", (gogoproto.customname)= "ID"];
  14. string title = 2 [(gogoproto.jsontag) = "title"];
  15. string content = 3 [(gogoproto.jsontag) = "content"];
  16. string detail = 4 [(gogoproto.jsontag) = "detail"];
  17. string ctime = 5 [(gogoproto.jsontag) = "ctime", (gogoproto.moretags) = "validate:\"min=0\""];
  18. string mtime = 6 [(gogoproto.jsontag) = "mtime", (gogoproto.moretags) = "validate:\"min=0\""];
  19. uint64 ver_id = 7 [(gogoproto.jsontag) = "ver_id", (gogoproto.moretags) = "validate:\"min=0\"", (gogoproto.customname)= "VerID"];
  20. }
  21. // The request message containing the bulletin info to update
  22. message BulletinInfoRequest {
  23. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id", (gogoproto.customname)= "VerID"];
  24. string title = 2 [(gogoproto.jsontag) = "title", (gogoproto.moretags) = "validate:\"required,max=32\""];
  25. string content = 3 [(gogoproto.jsontag) = "content", (gogoproto.moretags) = "validate:\"max=128\""];
  26. string detail = 4 [(gogoproto.jsontag) = "detail"];
  27. int64 target_item = 5 [(gogoproto.jsontag) = "target_item"];
  28. int64 parent_id = 6 [(gogoproto.jsontag) = "parent_id", (gogoproto.moretags) = "validate:\"required,min=1\"", (gogoproto.customname)= "ParentID"];
  29. }
  30. // The request message containing the required version info to review the bulletin
  31. message BulletinCheckRequest {
  32. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id", (gogoproto.moretags) = "validate:\"required,min=1\"", (gogoproto.customname)= "VerID"];
  33. int32 op_type = 2 [(gogoproto.jsontag) = "op_type", (gogoproto.moretags) = "validate:\"min=0,max=1\""];
  34. string comment = 3 [(gogoproto.jsontag) = "comment"];
  35. string reviewer = 4 [(gogoproto.jsontag) = "reviewer", (gogoproto.moretags) = "validate:\"required\""];
  36. }
  37. // The request message containing the required version info to change the bulletin's status
  38. message BulletinStateRequest {
  39. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id", (gogoproto.moretags) = "validate:\"required,min=1\"", (gogoproto.customname)= "VerID"];
  40. int32 op_type = 2 [(gogoproto.jsontag) = "op_type", (gogoproto.moretags) = "validate:\"min=0,max=1\""];
  41. int32 source = 3 [(gogoproto.jsontag) = "source", (gogoproto.moretags) = "validate:\"min=1,max=2\""];
  42. }
  43. // The general response message containing the result after updating/inserting the bulletin info
  44. message BulletinReply {
  45. bool success = 1 [(gogoproto.jsontag) = "success"];
  46. }