123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package com.platform.yijia.dao;
- import com.platform.yijia.pojo.StationPersonnel;
- import com.platform.yijia.pojo.StationPersonnelExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface StationPersonnelMapper {
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- long countByExample(StationPersonnelExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- int deleteByExample(StationPersonnelExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- int deleteByPrimaryKey(Integer personnelId);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- int insert(StationPersonnel record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- int insertSelective(StationPersonnel record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- List<StationPersonnel> selectByExample(StationPersonnelExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- StationPersonnel selectByPrimaryKey(Integer personnelId);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- int updateByExampleSelective(@Param("record") StationPersonnel record, @Param("example") StationPersonnelExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- int updateByExample(@Param("record") StationPersonnel record, @Param("example") StationPersonnelExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- int updateByPrimaryKeySelective(StationPersonnel record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table station_personnel
- *
- * @mbg.generated
- */
- int updateByPrimaryKey(StationPersonnel record);
- }
|