You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
922 B
38 lines
922 B
package com.nov.KgLowDurable.service; |
|
|
|
import com.baomidou.mybatisplus.extension.service.IService; |
|
import com.github.pagehelper.PageInfo; |
|
import com.nov.KgLowDurable.pojo.dto.LdDurableFormDto; |
|
import com.nov.KgLowDurable.pojo.entity.LdDurableForm; |
|
|
|
|
|
/** |
|
* 审批 |
|
* @author liweidong |
|
*/ |
|
public interface ILdDurableFormService extends IService<LdDurableForm> { |
|
|
|
/** |
|
* 获取二级耐用品列表 |
|
* @param departmentId |
|
* @param materialName |
|
* @param pageNum |
|
* @param pageSize |
|
* @return |
|
*/ |
|
PageInfo<LdDurableForm> getDurableFormList(String departmentId, String materialName, Integer pageNum, Integer pageSize); |
|
|
|
/** |
|
* 归还 报废 接口 |
|
* @param dto |
|
* @return |
|
*/ |
|
boolean restoreAndScrap(LdDurableFormDto dto); |
|
|
|
/** |
|
* 根据物资ID 查询 |
|
* @param materialId |
|
* @return |
|
*/ |
|
LdDurableForm getByMaterialId(Long materialId); |
|
}
|
|
|