7 changed files with 21 additions and 10 deletions
@ -1,4 +1,4 @@
@@ -1,4 +1,4 @@
|
||||
package co.depsystem.app.api; |
||||
package co.depsystem.app.api.ServiceApi; |
||||
|
||||
|
||||
import co.depsystem.app.api.Model.UserModel; |
||||
@ -1,15 +1,16 @@
@@ -1,15 +1,16 @@
|
||||
/** |
||||
* @author JOJO |
||||
* @class AssetMapper |
||||
* @class AssetTypeMapper |
||||
* @date 2023/4/7 |
||||
* @apiNote |
||||
*/ |
||||
|
||||
package co.depsystem.app.Dao.mapper; |
||||
|
||||
import co.depsystem.app.Dao.dataobject.AssetTypeDO; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface AssetMapper { |
||||
|
||||
public interface AssetTypeMapper { |
||||
AssetTypeDO getAssetType(); |
||||
} |
||||
@ -0,0 +1,10 @@
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?> |
||||
<!DOCTYPE mapper |
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="co.depsystem.app.Dao.mapper.AssetTypeMapper"> |
||||
|
||||
<select id="getAssetType" resultType="co.depsystem.app.Dao.dataobject.AssetTypeDO"> |
||||
|
||||
</select> |
||||
</mapper> |
||||
Loading…
Reference in new issue