TTaskMidMapper.java 1016 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.TTaskMid;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.math.BigDecimal;
  5. import java.util.List;
  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("count") 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. TTaskMid selectCountBytid(@Param("tid")Integer tid, @Param("type")Integer type);
  20. }