1
0
mirror of https://github.com/ManyakRus/crud_generator.git synced 2025-03-06 15:16:57 +02:00

44 lines
903 B
Go
Raw Normal View History

2024-09-17 16:50:01 +03:00
package protobuf
import (
"github.com/ManyakRus/crud_generator/internal/types"
"strings"
)
// FindText_ReadAll - добавляет текст ReadAll
func FindText_ReadAll(TextProto string, Table1 *types.Table) (TextProtoNew string, TextAdd string) {
TextProtoNew = TextProto
2024-09-17 17:38:53 +03:00
_, ok := types.MapReadAll[Table1]
if ok == false {
return
}
2024-09-17 16:50:01 +03:00
2024-09-17 17:38:53 +03:00
TextAdd = ""
Text1 := FindText_ReadAll1(Table1)
2024-09-17 16:50:01 +03:00
2024-09-17 17:38:53 +03:00
//проверим такой текст уже есть
pos1 := strings.Index(TextProto, Text1)
if pos1 >= 0 {
return
2024-09-17 16:50:01 +03:00
}
2024-09-17 17:38:53 +03:00
//
TextAdd = TextAdd + Text1
2024-09-17 16:50:01 +03:00
return TextProtoNew, TextAdd
}
// FindText_ReadAll1 - находит текст FindBy
func FindText_ReadAll1(Table1 *types.Table) string {
Otvet := "\n\trpc "
FuncName := "ReadAll"
TextRequest := "Request_Empty"
//
Otvet = Otvet + Table1.NameGo + "_" + FuncName + "(" + TextRequest + ") returns (ResponseMass) {}\n"
return Otvet
}