mybatis 在mapper中实现一个查询,结果对象的一个属性是自定义类,如何写resultMap,和sql语句

我自己写的始终报错,类1hc_cust(privateIntegercustid;privateIntegercusttype;privateStringcustname... 我自己写的始终报错,类1 hc_cust(private Integer custid;private Integer custtype;private String custname;private String custcontacts;private String custphone;private String custmobilephone;)类2 hc_rv(private Integer rvid;private Integer rveoid;private String rvdtest;private Hc_cust rvcustid;private String rvcarplate;private String rvcartypename;private Integer rvstatus;)
要查询 类2,
我的mapper中是这么写的:
<resultMap type="com.lb.entity.Hc_rv" id="hc_rvResultMap">
<id property="rvid" column="rvid"/>
<result property="rveoid" column="rveoid"/>
<result property="rvdtest" column="rvdtest"/>
<result property="rvcarplate" column="rvcarplate"/>
<result property="rvcartypename" column="rvcartypename"/>
<result property="rvstatus" column="rvstatus"/>
<association property="rvcustid" javaType="com.lb.entity.Hc_cust">
<id property="custid" column="custid" />
<result property="custtype" column="custtype"/>
<result property="custname" column="custname"/>
<result property="custcontacts" column="custcontacts"/>
<result property="custphone" column="custphone"/>
<result property="custmobilephone" column="custmobilephone"/>
</association>

</resultMap>
<select id="queryHc_rvById" paramterType="Integer" resultType="hc_rvResultMap">
select custid, custtype, custname, custcontacts,custphone,custmobilephone,
rvid, rveoid,rvdtest, rvcustid,rvcarplate, rvcartypename,rvstatus
from hc_rv left outer join hc_cust on rvcustid=custid where rvid=#{rvid}
</select>
展开
 我来答
bd9006
2013-01-06 · TA获得超过2.5万个赞
知道大有可为答主
回答量:4.8万
采纳率:63%
帮助的人:1.6亿
展开全部
使用别名

在前面定义别名,后面可以使用了。
追问
我知道是哪错了,不是别名 ,谢谢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
锦之笑i
2013-03-07
知道答主
回答量:2
采纳率:0%
帮助的人:2.5万
展开全部
resultType="hc_rvResultMap">

应为
resultMap="hc_rvResultMap">
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式