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.
|
|
|
|
package com.ruoyi.manager.service;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.manager.domain.LedgerInstantBinding;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 实时绑定台账Service接口
|
|
|
|
|
*
|
|
|
|
|
* @author wenjy
|
|
|
|
|
* @date 2024-07-15
|
|
|
|
|
*/
|
|
|
|
|
public interface ILedgerInstantBindingService
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* 查询实时绑定台账
|
|
|
|
|
*
|
|
|
|
|
* @param objid 实时绑定台账主键
|
|
|
|
|
* @return 实时绑定台账
|
|
|
|
|
*/
|
|
|
|
|
public LedgerInstantBinding selectLedgerInstantBindingByObjid(Long objid);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询实时绑定台账列表
|
|
|
|
|
*
|
|
|
|
|
* @param ledgerInstantBinding 实时绑定台账
|
|
|
|
|
* @return 实时绑定台账集合
|
|
|
|
|
*/
|
|
|
|
|
public List<LedgerInstantBinding> selectLedgerInstantBindingList(LedgerInstantBinding ledgerInstantBinding);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增实时绑定台账
|
|
|
|
|
*
|
|
|
|
|
* @param ledgerInstantBinding 实时绑定台账
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int insertLedgerInstantBinding(LedgerInstantBinding ledgerInstantBinding);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改实时绑定台账
|
|
|
|
|
*
|
|
|
|
|
* @param ledgerInstantBinding 实时绑定台账
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int updateLedgerInstantBinding(LedgerInstantBinding ledgerInstantBinding);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除实时绑定台账
|
|
|
|
|
*
|
|
|
|
|
* @param objids 需要删除的实时绑定台账主键集合
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteLedgerInstantBindingByObjids(String objids);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除实时绑定台账信息
|
|
|
|
|
*
|
|
|
|
|
* @param objid 实时绑定台账主键
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteLedgerInstantBindingByObjid(Long objid);
|
|
|
|
|
|
|
|
|
|
List<LedgerInstantBinding> selectList(LedgerInstantBinding ledgerInstantBinding);
|
|
|
|
|
|
|
|
|
|
List<LedgerInstantBinding> selectLedgerChildTablelist(LedgerInstantBinding ledgerInstantBinding);
|
|
|
|
|
|
|
|
|
|
int unbindingCargoDeleteLedger(Long basketId);
|
|
|
|
|
|
|
|
|
|
void deleteLedgerInstantByBasket(List<Long> ids);
|
|
|
|
|
|
|
|
|
|
int updateTaskStatebyBasketID(List<Long> ids);
|
|
|
|
|
|
|
|
|
|
List<LedgerInstantBinding> selectLedgerlistByCode(String code);
|
|
|
|
|
}
|