RmsLineSegemntMapper.java 804 B

123456789101112131415161718192021222324
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.RmsLineSegemnt;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.math.BigDecimal;
  6. import java.util.List;
  7. import java.util.Map;
  8. @Mapper
  9. public interface RmsLineSegemntMapper extends IBaseMapper<RmsLineSegemnt, BigDecimal> {
  10. //新增运输路线子表
  11. int insertSelective(RmsLineSegemnt rmsLineSegemnt);
  12. //修改运输路线子表
  13. int updateByPrimaryKeySelective(RmsLineSegemnt rmsLineSegemnt);
  14. //根据运输线路主表id查询运输线路子表
  15. List<Map<String, Object>> getRmsLineSegemnt(BigDecimal lineId);
  16. //根据运输路线主表id查询运输订单子表的数据
  17. List<Map<String,Object>> getRmsLineSegemntUpdate(BigDecimal lineId);
  18. }