|
@@ -16,13 +16,17 @@ public interface RmsCapacityMapper extends IBaseMapper<RmsCapacity, BigDecimal>
|
|
|
|
|
|
//根据运力id获取运力信息
|
|
//根据运力id获取运力信息
|
|
List<Map<String, Object>> getCapacityById(BigDecimal id);
|
|
List<Map<String, Object>> getCapacityById(BigDecimal id);
|
|
|
|
+
|
|
//运力下拉框
|
|
//运力下拉框
|
|
List<Map<String,Object>> getCapacityTypeId();
|
|
List<Map<String,Object>> getCapacityTypeId();
|
|
|
|
+
|
|
//运力id自增
|
|
//运力id自增
|
|
@Select("select seq_RMS_CAPACITY.nextval from dual")
|
|
@Select("select seq_RMS_CAPACITY.nextval from dual")
|
|
BigDecimal selectCapacityId();
|
|
BigDecimal selectCapacityId();
|
|
|
|
+
|
|
//承运商下拉框
|
|
//承运商下拉框
|
|
List<Map<String, Object>> getCarrierId();
|
|
List<Map<String, Object>> getCarrierId();
|
|
|
|
+
|
|
//通过车牌号查询是否存在重复值
|
|
//通过车牌号查询是否存在重复值
|
|
Integer selectBycapacityNumber(String number);
|
|
Integer selectBycapacityNumber(String number);
|
|
|
|
|