10 lines
284 B
Java
10 lines
284 B
Java
package com.cadlabel.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.cadlabel.entity.CadStructureHistoryRel;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
@Mapper
|
|
public interface CadStructureHistoryRelMapper extends BaseMapper<CadStructureHistoryRel> {
|
|
}
|