MyBatisCodeHelper-Pro icon indicating copy to clipboard operation
MyBatisCodeHelper-Pro copied to clipboard

生成sql的resultType 在使用内部类的场景 无法正常工作

Open hanyu658 opened this issue 7 months ago • 0 comments

mapper定义接口

List<Model.Item> findXxx();

生成的xml resultType不正确

<select id="findXxx" resultType="a.b.Model.Item"></select>

内部类应该是$而不是.

<select id="findXxx" resultType="a.b.Model$Item"></select>

hanyu658 avatar Apr 23 '25 11:04 hanyu658