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.

24 lines
650 B

6 months ago
package com.nov.KgLowDurable.service;
import com.baomidou.mybatisplus.extension.service.IService;
6 months ago
import com.github.pagehelper.PageInfo;
6 months ago
import com.nov.KgLowDurable.pojo.entity.LdApprove;
import com.nov.KgLowDurable.pojo.entity.LdDurableForm;
/**
* 审批
* @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
}