This commit is contained in:
Felipe Batista
2025-01-27 17:44:27 -03:00
commit 47e7f75720
238 changed files with 36425 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
select '@Column({ name: '''||column_name||''' })'||CHR(13)||
LOWER(column_name)||': '||
case when user_tab_columns.data_type = 'NUMBER' then 'number;'
when user_tab_columns.data_type = 'DATE' then 'Date;'
else 'string;' END ||CHR(13)
FROM USER_TAB_COLUMNS
WHERE TABLE_NAME = 'PCPEDITEMP'
order by user_tab_columns.column_id;