ssssssss-team/magic-api

camel后使用column不行

dhjz opened this issue · 1 comments

dhjz commented

单表查询db.camel() 后, 使用column("DATE_FORMAT(create_time, '%Y-%m-%d %H:%i:%S') AS create_time1")后台无法执行, 被转义成了,d_a_t_e__f_o_r_m_a_t(create_time, "%_y-%m-%d %_h:%i:%_s") as create_time1

camel会把column中所有的字符,从大写转为"_"+小写。
改成:column("date_format(create_time, '%Y-%m-%d %H:%i:%S') as create_time1")
但是'%Y-%m-%d %H:%i:%S'这一段就没办法了,可以考虑检索出来后在格式化日期。