| | |
| | | List<RemoteDeliveryPricingVO> listRemoteDeliveryPricing(Integer cityId); |
| | | |
| | | /** |
| | | * 新增预计时效配置 |
| | | * @param request 保存请求 |
| | | * @return 规则主键 |
| | | */ |
| | | Integer createEstimatedDelivery(EstimatedDeliverySaveDTO request); |
| | | |
| | | /** |
| | | * 修改预计时效配置 |
| | | * 保存预计时效配置(有则更新,无则新增) |
| | | * @param request 保存请求 |
| | | */ |
| | | void updateEstimatedDelivery(EstimatedDeliverySaveDTO request); |
| | | void saveEstimatedDelivery(EstimatedDeliverySaveDTO request); |
| | | |
| | | /** |
| | | * 删除预计时效配置 |
| | | * @param id 规则主键 |
| | | */ |
| | | void deleteEstimatedDelivery(Integer id); |
| | | |
| | | /** |
| | | * 查询预计时效配置列表 |
| | | * 查询预计时效配置(有且只有一条,无数据返回空对象) |
| | | * @param cityId 城市主键 |
| | | * @return 预计时效配置列表 |
| | | * @return 预计时效配置 |
| | | */ |
| | | List<EstimatedDeliveryVO> listEstimatedDelivery(Integer cityId); |
| | | EstimatedDeliveryVO getEstimatedDelivery(Integer cityId); |
| | | |
| | | /** |
| | | * 批量保存门店注册押金 |