| 123456789101112131415161718192021222324 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.TOrderLegalAffairs;
- import com.goafanti.order.bo.OutLegalAffairsLogBo;
- import java.util.List;
- public interface TOrderLegalAffairsMapper {
- int deleteByPrimaryKey(Integer id);
- int insert(TOrderLegalAffairs record);
- int insertSelective(TOrderLegalAffairs record);
- TOrderLegalAffairs selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(TOrderLegalAffairs record);
- int updateByPrimaryKey(TOrderLegalAffairs record);
- List<OutLegalAffairsLogBo> lagalAffairsLogList(String orderNo);
- void insertBatch(List<String> list);
- }
|