接口 UpdateByExampleSelectiveMapper<T>
-
- 类型参数:
T- 不能为空
- 所有已知子接口:
ExampleMapper<T>,Mapper<T>
public interface UpdateByExampleSelectiveMapper<T>通用Mapper接口,Example查询- 作者:
- liuzh
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 intupdateByExampleSelective(T record, Object example)根据Example条件更新实体`record`包含的不是null的属性值
-
-
-
方法详细资料
-
updateByExampleSelective
@UpdateProvider(type=ExampleProvider.class, method="dynamicSQL") int updateByExampleSelective(@Param("record") T record, @Param("example") Object example)
根据Example条件更新实体`record`包含的不是null的属性值- 参数:
record-example-- 返回:
-
-