shiyunteng
6 天以前 fc8c86e7a365d5c6bdc37c2b05b9f83115ac2bc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.by4cloud.platformx.device.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.by4cloud.platformx.common.core.util.R;
import com.by4cloud.platformx.device.entity.Device;
import com.by4cloud.platformx.device.entity.DeviceInventory;
import com.by4cloud.platformx.device.entity.DeviceLeasingLedger;
 
import java.util.List;
 
public interface DeviceLeasingLedgerService extends IService<DeviceLeasingLedger> {
 
    List<DeviceLeasingLedger> getSelectList();
 
    List<Device> getDeviceSelectList(Long ledgerId);
 
    R saveDeep(DeviceLeasingLedger deviceLeasingLedger);
 
    List<DeviceInventory> getLedgerDeviceList(Long deviceId);
 
    DeviceLeasingLedger getByIdDeep(Long id);
}