OmsshipShipmentInstructionsMapper.java 912 B

12345678910111213141516171819202122
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.OmsshipShipmentInstructions;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import java.util.List;
  6. import java.util.Map;
  7. import org.apache.ibatis.annotations.MapKey;
  8. import org.apache.ibatis.annotations.Mapper;
  9. @Mapper
  10. public interface OmsshipShipmentInstructionsMapper extends IBaseMapper<OmsshipShipmentInstructions, BigDecimal> {
  11. List<Map<String,Object>> selectAll(Map<String,Object> mapVal);
  12. int deleteByPrimaryKey(BigDecimal shipmentInstructionsId);
  13. int insert(OmsshipShipmentInstructions omsshipShipmentInstructions);
  14. int updateByPrimaryKeySelective(OmsshipShipmentInstructions omsshipShipmentInstructions);
  15. // 得到最大id
  16. BigDecimal selectMaxId();
  17. List<Map<String,Object>> selectShipmentInstructions(BigDecimal shipmentInstructionsId);
  18. List<Map<String,Object>> getBatchId();
  19. }