TKzyUserMapper.java
876 Bytes
package com.server.web.common.mapper;
import com.server.web.common.model.TKzyUser;
import com.server.web.common.model.TKzyUserExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface TKzyUserMapper {
    long countByExample(TKzyUserExample example);
    int deleteByExample(TKzyUserExample example);
    int deleteByPrimaryKey(Long id);
    int insert(TKzyUser record);
    int insertSelective(TKzyUser record);
    List<TKzyUser> selectByExample(TKzyUserExample example);
    TKzyUser selectByPrimaryKey(Long id);
    int updateByExampleSelective(@Param("record") TKzyUser record, @Param("example") TKzyUserExample example);
    int updateByExample(@Param("record") TKzyUser record, @Param("example") TKzyUserExample example);
    int updateByPrimaryKeySelective(TKzyUser record);
    int updateByPrimaryKey(TKzyUser record);
}