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