1
0
mirror of https://github.com/ManyakRus/crud_generator.git synced 2025-07-16 02:54:19 +02:00

сделал ReadAll()

This commit is contained in:
Nikitin Aleksandr
2024-09-18 14:25:47 +03:00
parent 95eb01a2ca
commit 389996f7a2
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ separate function for each column of each table
- UpdateManyFields() - change several columns listed in an array
- FindBy_ColumnName() - search for a record by one or more columns (if you fill in the findby_functions.json file)
- FindMassBy_ColumnName() - search for multiple records by one or more columns (if you fill in the findmassby_functions.json file)
- ReadAll() - returns all table records, except those marked for deletion is_deleted=true (if you fill in the readall_functions.json file)
files are generated:
1. table - struct structure with all fields from the database, and gorm + json annotations

View File

@ -14,6 +14,7 @@
- UpdateManyFields() - изменение нескольких колонок, перечисленных в массиве
- FindBy_ColumnName() - поиск записи по одной или нескольким колонкам (если заполнить файл findby_functions.json)
- FindMassBy_ColumnName() - поиск несколько записей по одной или нескольким колонкам (если заполнить файл findmassby_functions.json)
- ReadAll() - возврат всех записей таблицы, кроме помеченных на удаление is_deleted=true (если заполнить файл readall_functions.json)
генерируются файлы: