Compare commits

...

2 Commits

Author SHA1 Message Date
daiqy88
9534eef8fd Merge remote-tracking branch 'origin/main' 2026-02-03 12:42:08 +08:00
daiqy88
17b2807b3e 添加系统参数配置 2026-02-03 12:41:59 +08:00
4 changed files with 35 additions and 0 deletions

View File

@@ -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> {
}

View File

@@ -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> {
}

View File

@@ -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> {
}

View File

@@ -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> {
}