MYSQL 快速生成实体SQL

select
CONCAT('public ', replace(replace(replace(DATA_TYPE, 'varchar', 'string'), 'char', 'string'), 'datetime', 'DateTime')),
CONCAT(COLUMN_NAME, ' { get; set; }'),"//",COLUMN_COMMENT
from information_schema.COLUMNS where table_name = 'clyg__trade';

table换成自己实际的表名。

posted @ 2023-03-17 14:18  人生苦短,知足常乐!  阅读(70)  评论(0编辑  收藏  举报