TTaskMidMapper.java 939 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.TTaskMid;
  3. import java.math.BigDecimal;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface TTaskMidMapper {
  7. int deleteByPrimaryKey(Integer id);
  8. int insert(TTaskMid record);
  9. int insertSelective(TTaskMid record);
  10. TTaskMid selectByPrimaryKey(Integer id);
  11. int updateByPrimaryKeySelective(TTaskMid record);
  12. int updateByPrimaryKey(TTaskMid record);
  13. int updateCostAmount(@Param("tid")Integer tid, @Param("costAmount")BigDecimal costAmount);
  14. int updatePaymentAmount(@Param("tid")Integer tid, @Param("paymentAmount")BigDecimal paymentAmount, @Param("type")Integer type);
  15. void updateCertificatesCountByTid(@Param("tid")Integer tid, @Param("count")Integer count);
  16. List<TTaskMid> selectListByTid(Integer tid);
  17. void updateByTid(TTaskMid tm);
  18. void addValue(Integer xzs, Integer bhs);
  19. void updateCountBytid(Integer taskId);
  20. }