级别: 贡士
UID: 116261
积分:554 加为好友
威望: 6 精华: 0
主题:68
回复:407
注册时间:2017-09-02
在线时长:0
|
3# 发表于:2018-04-20 17:52:38 IP:118.230.*.*
CMS的数据持久化是用的hibernate,它的SQL叫 hql 这个翻译成sql语句是这样的
select a.*,b.* from jc_api_record a left jion jc_api_account b on a.api_account=b.app_id
where a.sign=#{sign}
and b.app_id=#{appId}
|