You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
221 B

  1. syntax = "proto3";
  2. package JT808.GrpcDashbord.ServiceGrpcBase;
  3. // 统一分页参数
  4. message PageRequest{
  5. int32 PageIndex=1;
  6. int32 PageSize=2;
  7. int32 Total =3;
  8. int32 Skip=4;
  9. map<string, string> Sort = 5;
  10. }