shiyunteng
7 天以前 0ad13cb4bf387d4f2db2d62540ebb73a376087f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.by4cloud.platformx.device.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.by4cloud.platformx.device.dto.DevicePurchasePlanQueryDTO;
import com.by4cloud.platformx.device.entity.DevicePurchasePlan;
 
public interface DevicePurchasePlanService extends IService<DevicePurchasePlan> {
 
    boolean saveNew(DevicePurchasePlan devicePurchasePlan);
 
    IPage pageNew(Page page, DevicePurchasePlanQueryDTO queryDTO);
 
    boolean approved(Long id);
 
    DevicePurchasePlan getByIdNew(Long id);
 
    boolean updateByIdNew(DevicePurchasePlan devicePurchasePlan);
}