mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-30 16:10:03 +08:00
62 lines
1.5 KiB
Java
62 lines
1.5 KiB
Java
|
|
package com.jsowell.pile.service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import com.jsowell.pile.domain.OrderInsuranceInfo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 订单保险信息Service接口
|
||
|
|
*
|
||
|
|
* @author jsowell
|
||
|
|
* @date 2025-09-05
|
||
|
|
*/
|
||
|
|
public interface IOrderInsuranceInfoService {
|
||
|
|
/**
|
||
|
|
* 查询订单保险信息
|
||
|
|
*
|
||
|
|
* @param id 订单保险信息主键
|
||
|
|
* @return 订单保险信息
|
||
|
|
*/
|
||
|
|
public OrderInsuranceInfo selectOrderInsuranceInfoById(Long id);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询订单保险信息列表
|
||
|
|
*
|
||
|
|
* @param orderInsuranceInfo 订单保险信息
|
||
|
|
* @return 订单保险信息集合
|
||
|
|
*/
|
||
|
|
public List<OrderInsuranceInfo> selectOrderInsuranceInfoList(OrderInsuranceInfo orderInsuranceInfo);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 新增订单保险信息
|
||
|
|
*
|
||
|
|
* @param orderInsuranceInfo 订单保险信息
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int insertOrderInsuranceInfo(OrderInsuranceInfo orderInsuranceInfo);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 修改订单保险信息
|
||
|
|
*
|
||
|
|
* @param orderInsuranceInfo 订单保险信息
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int updateOrderInsuranceInfo(OrderInsuranceInfo orderInsuranceInfo);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 批量删除订单保险信息
|
||
|
|
*
|
||
|
|
* @param ids 需要删除的订单保险信息主键集合
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int deleteOrderInsuranceInfoByIds(Long[] ids);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 删除订单保险信息信息
|
||
|
|
*
|
||
|
|
* @param id 订单保险信息主键
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int deleteOrderInsuranceInfoById(Long id);
|
||
|
|
}
|