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.

30 lines
896 B
Java

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