| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package com.minpay.db.table.mapper;
- import com.minpay.db.table.model.TpLogisticsFlow;
- import com.minpay.db.table.model.TpLogisticsFlowExample;
- import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface TpLogisticsFlowMapper extends IMINMybatisEntityMapper<TpLogisticsFlow, String, TpLogisticsFlowExample> {
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int countByExample(TpLogisticsFlowExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int deleteByExample(TpLogisticsFlowExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int deleteByPrimaryKey(String foleno);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int insert(TpLogisticsFlow record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int insertSelective(TpLogisticsFlow record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- List<TpLogisticsFlow> selectByExample(TpLogisticsFlowExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- TpLogisticsFlow selectByPrimaryKey(String foleno);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int updateByExampleSelective(@Param("record") TpLogisticsFlow record, @Param("example") TpLogisticsFlowExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int updateByExample(@Param("record") TpLogisticsFlow record, @Param("example") TpLogisticsFlowExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int updateByPrimaryKeySelective(TpLogisticsFlow record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table tp_logistics_flow
- *
- * @mbggenerated
- */
- int updateByPrimaryKey(TpLogisticsFlow record);
- }
|