package com.sztzjy.linkCommerce.mapper; import com.sztzjy.linkCommerce.entity.StuUser; import com.sztzjy.linkCommerce.entity.StuUserExample; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; @Mapper public interface StuUserMapper { long countByExample(StuUserExample example); int deleteByExample(StuUserExample example); int deleteByPrimaryKey(String userId); int insert(StuUser record); int insertSelective(StuUser record); List selectByExample(StuUserExample example); StuUser selectByPrimaryKey(String userId); int updateByExampleSelective(@Param("record") StuUser record, @Param("example") StuUserExample example); int updateByExample(@Param("record") StuUser record, @Param("example") StuUserExample example); int updateByPrimaryKeySelective(StuUser record); int updateByPrimaryKey(StuUser record); }