项目管理接口

This commit is contained in:
zhumeixiao
2024-09-30 15:37:16 +08:00
parent 237da90701
commit 20e7998c13
5 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?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="com.fastbee.ggroup.mapper.GLegendMapper">
<resultMap type="GLegend" id="GGroupsResult">
<result property="id" column="id" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
<result property="updateBy" column="update_by" />
<result property="icon" column="icon"/>
<result property="type" column="type"/>
</resultMap>
</mapper>