22 lines
578 B
22 lines
578 B
![]()
5 months ago
|
package com.ruoyi.tc.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.ruoyi.tc.entity.AssetCurrent;
|
||
|
import com.ruoyi.tc.entity.request.AssetCurrentPageRequest;
|
||
|
import com.ruoyi.tc.entity.response.AssetCurrentResponse;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 现有资产复制表(AssetCurrentResponse)表服务接口
|
||
|
*
|
||
|
* @author makejava
|
||
|
* @since 2024-11-15 10:04:03
|
||
|
*/
|
||
|
public interface AssetCurrentCpService extends IService<AssetCurrentResponse> {
|
||
|
|
||
|
}
|
||
|
|