TOrderLegalAffairsMapper.java 633 B

123456789101112131415161718192021222324
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.TOrderLegalAffairs;
  3. import com.goafanti.order.bo.OutLegalAffairsLogBo;
  4. import java.util.List;
  5. public interface TOrderLegalAffairsMapper {
  6. int deleteByPrimaryKey(Integer id);
  7. int insert(TOrderLegalAffairs record);
  8. int insertSelective(TOrderLegalAffairs record);
  9. TOrderLegalAffairs selectByPrimaryKey(Integer id);
  10. int updateByPrimaryKeySelective(TOrderLegalAffairs record);
  11. int updateByPrimaryKey(TOrderLegalAffairs record);
  12. List<OutLegalAffairsLogBo> lagalAffairsLogList(String orderNo);
  13. void insertBatch(List<String> list);
  14. }