猿问

不太了解,求解释javaMybatis column是什么意思?

column 代表什么 <association property="customer" javaType="customer"
select="com.itheima.dao.CustomerDao.findCustomerById" column="cid"
/> 怎么把cid的值给代理对象的??

翻过高山走不出你
浏览 230回答 1
1回答

拉风的咖菲猫

您好,是列的意思,对应数据库中表中的某一列。<!-- 关联查询传入多值,column当map使用 --><association property="actualWorkTime" column="{reqId=id,endDate=endDateStr,startDate=startDateStr}" select="selectById"></association>上面代码中的select中的selectById是查询语句的返回值。(这里就是cid查出来的值给代理对象)
随时随地看视频慕课网APP
我要回答