| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.TOrderOutsource;
- import com.goafanti.common.model.TOrderOutsourceExample;
- import com.goafanti.order.bo.OrderOutsourceDtails;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface TOrderOutsourceMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- long countByExample(TOrderOutsourceExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- int deleteByExample(TOrderOutsourceExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- int insert(TOrderOutsource record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- int insertSelective(TOrderOutsource record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- List<TOrderOutsource> selectByExample(TOrderOutsourceExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- TOrderOutsource selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- int updateByExampleSelective(@Param("record") TOrderOutsource record,
- @Param("example") TOrderOutsourceExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- int updateByExample(@Param("record") TOrderOutsource record, @Param("example") TOrderOutsourceExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- int updateByPrimaryKeySelective(TOrderOutsource record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_order_outsource
- * @mbg.generated Mon Aug 12 10:26:36 CST 2019
- */
- int updateByPrimaryKey(TOrderOutsource record);
- OrderOutsourceDtails selectByOrderNo(String orderNo);
- }
|