16 lines
415 B
Java
16 lines
415 B
Java
|
|
package com.klp.mapper;
|
|||
|
|
|
|||
|
|
import com.klp.domain.WmsMaterialWarning;
|
|||
|
|
import com.klp.domain.vo.WmsMaterialWarningVo;
|
|||
|
|
import com.klp.common.core.mapper.BaseMapperPlus;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 钢卷通用维度告警(长度/厚度/宽度)Mapper接口
|
|||
|
|
*
|
|||
|
|
* @author klp
|
|||
|
|
* @date 2026-06-06
|
|||
|
|
*/
|
|||
|
|
public interface WmsMaterialWarningMapper extends BaseMapperPlus<WmsMaterialWarningMapper, WmsMaterialWarning, WmsMaterialWarningVo> {
|
|||
|
|
|
|||
|
|
}
|