| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- 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<SysCbitLog> selectByExampleWithBLOBs(SysCbitLogExample example);
- /**
- * description:selectByExample
- *
- * @author: gws
- * @date: 2021-11-22
- * @since: 1.0
- */
- List<SysCbitLog> 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);
- }
|