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.
32 lines
949 B
Java
32 lines
949 B
Java
package com.sztzjy.linkCommerce.mapper;
|
|
|
|
import com.sztzjy.linkCommerce.entity.Userinfo;
|
|
import com.sztzjy.linkCommerce.entity.UserinfoExample;
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
@Mapper
|
|
public interface UserinfoMapper {
|
|
long countByExample(UserinfoExample example);
|
|
|
|
int deleteByExample(UserinfoExample example);
|
|
|
|
int deleteByPrimaryKey(String userId);
|
|
|
|
int insert(Userinfo record);
|
|
|
|
int insertSelective(Userinfo record);
|
|
|
|
List<Userinfo> selectByExample(UserinfoExample example);
|
|
|
|
Userinfo selectByPrimaryKey(String userId);
|
|
|
|
int updateByExampleSelective(@Param("record") Userinfo record, @Param("example") UserinfoExample example);
|
|
|
|
int updateByExample(@Param("record") Userinfo record, @Param("example") UserinfoExample example);
|
|
|
|
int updateByPrimaryKeySelective(Userinfo record);
|
|
|
|
int updateByPrimaryKey(Userinfo record);
|
|
} |