package io.dataease.base.mapper; import io.dataease.base.domain.User; import io.dataease.base.domain.UserExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface UserMapper { long countByExample(UserExample example); int deleteByExample(UserExample example); int deleteByPrimaryKey(String id); int insert(User record); int insertSelective(User record); List selectByExample(UserExample example); User selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") User record, @Param("example") UserExample example); int updateByExample(@Param("record") User record, @Param("example") UserExample example); int updateByPrimaryKeySelective(User record); int updateByPrimaryKey(User record); }