| | |
| | | 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; |
| | |
| | | List<DeviceLeasingLedger> getSelectList(); |
| | | |
| | | List<Device> getDeviceSelectList(Long ledgerId); |
| | | |
| | | R saveDeep(DeviceLeasingLedger deviceLeasingLedger); |
| | | |
| | | List<DeviceInventory> getLedgerDeviceList(Long deviceId); |
| | | |
| | | DeviceLeasingLedger getByIdDeep(Long id); |
| | | } |