IMaterialWarningService.java
372 Bytes
package com.huaheng.pc.config.materialWarnning.service;
import com.huaheng.pc.config.materialWarnning.domain.MaterialWarning;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
* 物料报警 服务层
*
* @author huaheng
* @date 2020-07-17
*/
public interface IMaterialWarningService extends IService<MaterialWarning> {
}