parent
85d772e4be
commit
ff4540a390
@ -1,22 +1,63 @@ |
||||
package com.jianshui.platform.mapper; |
||||
|
||||
|
||||
import com.jianshui.platform.domain.InvoiceDelivery; |
||||
import com.jianshui.platform.dto.InvoiceDeliveryDTO; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @Author: xinzge |
||||
* @Description: 发票交付持久层 |
||||
* @CreateTime: 2023-06-06 14:33 |
||||
* @Version: 1.0 |
||||
**/ |
||||
@Mapper |
||||
public interface InvoiceDeliveryMapper { |
||||
* 发票交付Mapper接口 |
||||
* |
||||
* @author jianshui |
||||
* @date 2023-06-06 |
||||
*/ |
||||
public interface InvoiceDeliveryMapper |
||||
{ |
||||
/** |
||||
* 查询发票交付 |
||||
* |
||||
* @param id 发票交付主键 |
||||
* @return 发票交付 |
||||
*/ |
||||
public InvoiceDelivery selectInvoiceDeliveryById(Long id); |
||||
|
||||
/** |
||||
* 查询发票交付列表 |
||||
* |
||||
* @param invoiceDelivery 发票交付 |
||||
* @return 发票交付集合 |
||||
*/ |
||||
public List<InvoiceDelivery> selectInvoiceDeliveryList(InvoiceDelivery invoiceDelivery); |
||||
|
||||
/** |
||||
* 新增发票交付 |
||||
* |
||||
* @param invoiceDelivery 发票交付 |
||||
* @return 结果 |
||||
*/ |
||||
public int insertInvoiceDelivery(InvoiceDelivery invoiceDelivery); |
||||
|
||||
/** |
||||
* 修改发票交付 |
||||
* |
||||
* @param invoiceDelivery 发票交付 |
||||
* @return 结果 |
||||
*/ |
||||
public int updateInvoiceDelivery(InvoiceDelivery invoiceDelivery); |
||||
|
||||
/** |
||||
* 删除发票交付 |
||||
* |
||||
* @param id 发票交付主键 |
||||
* @return 结果 |
||||
*/ |
||||
public int deleteInvoiceDeliveryById(Long id); |
||||
|
||||
/** |
||||
* 功能描述: 新增发票交付 |
||||
* @param invoiceDelivery 发票交付信息 |
||||
* @return : void |
||||
* 批量删除发票交付 |
||||
* |
||||
* @param ids 需要删除的数据主键集合 |
||||
* @return 结果 |
||||
*/ |
||||
void insertInvoiceDelivery(InvoiceDelivery invoiceDelivery); |
||||
public int deleteInvoiceDeliveryByIds(Long[] ids); |
||||
} |
||||
|
Loading…
Reference in new issue