You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
package com.jianshui.invoiceall.service;
|
|
|
|
import java.util.List;
|
|
import com.jianshui.system.domain.InvoiceAllYhdj;
|
|
|
|
/**
|
|
* 金四-用户登记Service接口
|
|
*
|
|
* @author jianshui
|
|
* @date 2022-12-13
|
|
*/
|
|
public interface IInvoiceAllYhdjService
|
|
{
|
|
/**
|
|
* 查询金四-用户登记
|
|
*
|
|
* @param id 金四-用户登记主键
|
|
* @return 金四-用户登记
|
|
*/
|
|
public InvoiceAllYhdj selectInvoiceAllYhdjById(Long id);
|
|
|
|
/**
|
|
* 查询金四-用户登记列表
|
|
*
|
|
* @param invoiceAllYhdj 金四-用户登记
|
|
* @return 金四-用户登记集合
|
|
*/
|
|
public List<InvoiceAllYhdj> selectInvoiceAllYhdjList(InvoiceAllYhdj invoiceAllYhdj);
|
|
|
|
/**
|
|
* 新增金四-用户登记
|
|
*
|
|
* @param invoiceAllYhdj 金四-用户登记
|
|
* @return 结果
|
|
*/
|
|
public int insertInvoiceAllYhdj(InvoiceAllYhdj invoiceAllYhdj);
|
|
|
|
/**
|
|
* 修改金四-用户登记
|
|
*
|
|
* @param invoiceAllYhdj 金四-用户登记
|
|
* @return 结果
|
|
*/
|
|
public int updateInvoiceAllYhdj(InvoiceAllYhdj invoiceAllYhdj);
|
|
|
|
/**
|
|
* 批量删除金四-用户登记
|
|
*
|
|
* @param ids 需要删除的金四-用户登记主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteInvoiceAllYhdjByIds(Long[] ids);
|
|
|
|
/**
|
|
* 删除金四-用户登记信息
|
|
*
|
|
* @param id 金四-用户登记主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteInvoiceAllYhdjById(Long id);
|
|
}
|
|
|