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.

43 lines
1003 B

6 months ago
package com.nov.KgLowDurable.service;
6 months ago
6 months ago
import com.baomidou.mybatisplus.extension.service.IService;
6 months ago
import com.github.pagehelper.PageInfo;
6 months ago
import com.nov.KgLowDurable.pojo.dto.LdDurableFormDto;
5 months ago
import com.nov.KgLowDurable.pojo.entity.LdConsumerForm;
6 months ago
import com.nov.KgLowDurable.pojo.entity.LdDurableForm;
5 months ago
import java.util.List;
6 months ago
/**
* 审批
* @author liweidong
*/
public interface ILdDurableFormService extends IService<LdDurableForm> {
6 months ago
/**
* 获取二级耐用品列表
* @param departmentId
* @param materialName
* @param pageNum
* @param pageSize
* @return
*/
PageInfo<LdDurableForm> getDurableFormList(String departmentId, String materialName, Integer pageNum, Integer pageSize);
6 months ago
/**
* 归还 报废 接口
* @param dto
* @return
*/
boolean restoreAndScrap(LdDurableFormDto dto);
/**
* 根据物资ID 查询
* @param materialId
* @return
*/
LdDurableForm getByMaterialId(Long materialId);
5 months ago
6 months ago
}