TmsshipOutWharyResultMapper.java 503 B

1234567891011121314151617
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.TmsshipOutWharyResult;
  3. import com.steerinfo.dil.model.TmsshipTotalResult;
  4. import com.steerinfo.framework.mapper.IBaseMapper;
  5. import java.math.*;
  6. import org.apache.ibatis.annotations.Mapper;
  7. @Mapper
  8. public interface TmsshipOutWharyResultMapper extends IBaseMapper<TmsshipOutWharyResult, BigDecimal> {
  9. // 查询最大id
  10. BigDecimal selectMaxId();
  11. // 插入驶离实绩
  12. int insert(TmsshipTotalResult tmsshipTotalResult);
  13. }