| 12345678910111213141516171819202122 |
- 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);
- }
|