feat(gear-oa): 为GearOrderMapper接口方法添加@Param注解
为selectVoPagePlus方法的QueryWrapper参数添加@Param("ew")注解,
使其与selectVoPlusPage方法的参数注解保持一致, 确保MyBatis参数绑定的
正确性。
This commit is contained in:
@@ -18,5 +18,5 @@ public interface GearOrderMapper extends BaseMapperPlus<GearOrderMapper, GearOrd
|
|||||||
|
|
||||||
Page<GearOrderVo> selectVoPlusPage(Page<?> page, @Param("ew") Wrapper<GearOrder> wrapper);
|
Page<GearOrderVo> selectVoPlusPage(Page<?> page, @Param("ew") Wrapper<GearOrder> wrapper);
|
||||||
|
|
||||||
Page<GearOrderVo> selectVoPagePlus(Page<Object> build, QueryWrapper<GearOrder> lqw);
|
Page<GearOrderVo> selectVoPagePlus(Page<Object> build,@Param("ew") QueryWrapper<GearOrder> lqw);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user