kfc.proto 925 B

123456789101112131415161718192021222324
  1. syntax = "proto3";
  2. package activity.service;
  3. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  4. option go_package = "kfc";
  5. option (gogoproto.goproto_enum_prefix_all) = false;
  6. option (gogoproto.goproto_getters_all) = false;
  7. option (gogoproto.unmarshaler_all) = true;
  8. option (gogoproto.marshaler_all) = true;
  9. option (gogoproto.sizer_all) = true;
  10. message BnjKfcCoupon {
  11. int64 ID = 1 [(gogoproto.jsontag) ="id"];
  12. int64 Mid = 2 [(gogoproto.jsontag) ="mid"];
  13. string Coupon_code = 3 [(gogoproto.jsontag) ="coupon_code"];
  14. string Desc = 4 [(gogoproto.jsontag) ="desc"];
  15. int64 State = 5 [(gogoproto.jsontag) ="state"];
  16. int64 Delete_time = 6 [(gogoproto.jsontag) ="-", (gogoproto.casttype) = "go-common/library/time.Time"];
  17. int64 Ctime = 7 [(gogoproto.jsontag) ="-", (gogoproto.casttype) = "go-common/library/time.Time"];
  18. int64 Mtime = 8 [(gogoproto.jsontag) ="-", (gogoproto.casttype) = "go-common/library/time.Time"];
  19. }