| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.TChangeDun;
- import com.goafanti.common.model.TChangeDunExample;
- import com.goafanti.order.bo.TChangeDunOut;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface TChangeDunMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- long countByExample(TChangeDunExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- int deleteByExample(TChangeDunExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- int insert(TChangeDun record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- int insertSelective(TChangeDun record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- List<TChangeDun> selectByExample(TChangeDunExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- TChangeDun selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- int updateByExampleSelective(@Param("record") TChangeDun record, @Param("example") TChangeDunExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- int updateByExample(@Param("record") TChangeDun record, @Param("example") TChangeDunExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- int updateByPrimaryKeySelective(TChangeDun record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_dun
- * @mbg.generated Mon Jan 13 11:34:14 CST 2020
- */
- int updateByPrimaryKey(TChangeDun record);
- void insertSelectiveList(@Param("list")List<TChangeDun> list);
- List<TChangeDunOut> selectByCid(Integer id);
- /**
- *
- * @param tid 变更项目id
- * @param type 处理类型
- * @param i
- * @return
- */
- int updateByTid(@Param("tid")Integer tid,@Param("cid")Integer cid,@Param("type")Integer type);
- void deleteByCtid(Integer id);
-
-
- }
|