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> 展开
要查询 类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> 展开
展开全部
使用别名
在前面定义别名,后面可以使用了。
在前面定义别名,后面可以使用了。
追问
我知道是哪错了,不是别名 ,谢谢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
resultType="hc_rvResultMap">
应为
resultMap="hc_rvResultMap">
应为
resultMap="hc_rvResultMap">
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询