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