You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.5 KiB
Java

package com.aucma.base.service;
import java.util.List;
import com.aucma.base.domain.BaseDeviceLedger;
/**
* Service
*
* @author Yinq
* @date 2023-09-19
*/
public interface IBaseDeviceLedgerService
{
/**
*
*
* @param objId
* @return
*/
public BaseDeviceLedger selectBaseDeviceLedgerByObjId(Long objId);
/**
*
*
* @param baseDeviceLedger
* @return
*/
public List<BaseDeviceLedger> selectBaseDeviceLedgerList(BaseDeviceLedger baseDeviceLedger);
/**
*
*
* @param baseDeviceLedger
* @return
*/
public int insertBaseDeviceLedger(BaseDeviceLedger baseDeviceLedger);
/**
*
*
* @param baseDeviceLedger
* @return
*/
public int updateBaseDeviceLedger(BaseDeviceLedger baseDeviceLedger);
/**
*
*
* @param objIds
* @return
*/
public int deleteBaseDeviceLedgerByObjIds(Long[] objIds);
/**
*
*
* @param objId
* @return
*/
public int deleteBaseDeviceLedgerByObjId(Long objId);
/**
*
* @return
*/
public String getDeviceCode();
}