package com.ydtech.modules.admin.dao; import com.ydtech.modules.admin.model.SysCbitError; import com.ydtech.modules.admin.model.SysCbitErrorExample; import java.util.List; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; @Repository public interface SysCbitErrorMapper { /** * description:countByExample * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ long countByExample(SysCbitErrorExample example); /** * description:deleteByExample * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int deleteByExample(SysCbitErrorExample example); /** * description:deleteByPrimaryKey * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int deleteByPrimaryKey(String reqno); /** * description:insert * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int insert(SysCbitError record); /** * description:insertSelective * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int insertSelective(SysCbitError record); /** * description:selectByExampleWithBLOBs * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ List selectByExampleWithBLOBs(SysCbitErrorExample example); /** * description:selectByExample * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ List selectByExample(SysCbitErrorExample example); /** * description:selectByPrimaryKey * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ SysCbitError selectByPrimaryKey(String reqno); /** * description:updateByExampleSelective * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int updateByExampleSelective(@Param("record") SysCbitError record, @Param("example") SysCbitErrorExample example); /** * description:updateByExampleWithBLOBs * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int updateByExampleWithBLOBs(@Param("record") SysCbitError record, @Param("example") SysCbitErrorExample example); /** * description:updateByExample * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int updateByExample(@Param("record") SysCbitError record, @Param("example") SysCbitErrorExample example); /** * description:updateByPrimaryKeySelective * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int updateByPrimaryKeySelective(SysCbitError record); /** * description:updateByPrimaryKeyWithBLOBs * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int updateByPrimaryKeyWithBLOBs(SysCbitError record); /** * description:updateByPrimaryKey * * @author: gws * @date: 2021-11-26 * @since: 1.0 */ int updateByPrimaryKey(SysCbitError record); }