You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1002 B
Java

1 year ago
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<StuUser> 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);
}