Compare commits
2 Commits
55d3ff78f2
...
9534eef8fd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9534eef8fd | ||
|
|
17b2807b3e |
@@ -0,0 +1,7 @@
|
||||
package com.sdm.project.dao.YAMapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.sdm.project.model.entity.YA.SimulationKeyResult;
|
||||
|
||||
public interface BosimKeyResultMap extends BaseMapper<SimulationKeyResult> {
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.sdm.project.dao.YAMapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.sdm.project.model.entity.YA.SimulationModel;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
|
||||
@Mapper
|
||||
public interface BosimModuleMap extends BaseMapper<SimulationModel> {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.sdm.project.dao.YAMapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.sdm.project.model.entity.YA.SimulationReport;
|
||||
|
||||
public interface BosimReportMap extends BaseMapper<SimulationReport> {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.sdm.project.dao.YAMapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.sdm.project.model.entity.YA.SimulationWorkTask;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface BosimWorkTaskMap extends BaseMapper<SimulationWorkTask> {
|
||||
}
|
||||
Reference in New Issue
Block a user