19 lines
403 B
Protocol Buffer
19 lines
403 B
Protocol Buffer
syntax = "proto3";
|
|
package supplier;
|
|
option go_package = "git.techease.ru/Smart-search/smart-search-back/pkg/pb/supplier";
|
|
|
|
service SupplierService {
|
|
rpc ExportExcel(ExportExcelRequest) returns (ExportExcelResponse);
|
|
}
|
|
|
|
message ExportExcelRequest {
|
|
string request_id = 1;
|
|
int64 user_id = 2;
|
|
}
|
|
|
|
message ExportExcelResponse {
|
|
bytes file_data = 1;
|
|
string file_name = 2;
|
|
string mime_type = 3;
|
|
}
|