This commit is contained in:
张良(004796)
2024-01-03 14:50:25 +08:00
parent fdc6dfc477
commit 1641b5f871
6 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?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.ruoyi.cai.mapper.MemberPriceMapper">
<resultMap type="com.ruoyi.cai.domain.MemberPrice" id="MemberPriceResult">
<result property="id" column="id"/>
<result property="memberType" column="member_type"/>
<result property="name" column="name"/>
<result property="price" column="price"/>
<result property="img" column="img"/>
<result property="desc" column="desc"/>
<result property="expires" column="expires"/>
<result property="status" column="status"/>
<result property="longs" column="longs"/>
</resultMap>
</mapper>