版本更新
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.openhis.sys.mapper;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.openhis.sys.domain.OperationRecord;
|
||||
|
||||
/**
|
||||
* 系统操作记录Mapper接口
|
||||
*
|
||||
* @author system
|
||||
* @date 2025-02-20
|
||||
*/
|
||||
@Repository
|
||||
public interface OperationRecordMapper extends BaseMapper<OperationRecord> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.openhis.sys.mapper;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.openhis.sys.domain.Option;
|
||||
|
||||
/**
|
||||
* 系统选项配置Mapper接口
|
||||
*
|
||||
* @author system
|
||||
* @date 2025-02-20
|
||||
*/
|
||||
@Repository
|
||||
public interface OptionMapper extends BaseMapper<Option> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user