syntax = "proto3"; option go_package = "./supplier"; service SupplierService { rpc GetSupplierList(SupplierListRequest) returns (SupplierListResponse); } message SupplierListRequest { int32 Status=1; } message SupplierInfo { int32 SupplierId =1 ; string SupplierName =2; } message SupplierListResponse { repeated SupplierInfo List =1; }