19 lines
383 B
Java
19 lines
383 B
Java
|
package com.jdc.jdcproject.mapper;
|
||
|
|
||
|
import com.jdc.jdcproject.entity.DicekeMiningloss;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 采剥与贫损表; Mapper 接口
|
||
|
* </p>
|
||
|
*
|
||
|
* @author haoyanlu
|
||
|
* @since 2025-04-26
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface DicekeMininglossMapper extends BaseMapper<DicekeMiningloss> {
|
||
|
|
||
|
}
|