25 lines
1.3 KiB
XML
25 lines
1.3 KiB
XML
<?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.cpop.nftmeta.api.mapper.ZTicketTierMapper">
|
|
<!--********************************-->
|
|
<!-- 票档和场次关联表 -->
|
|
<!-- Created on 2024-11-26 -->
|
|
<!-- Author yxz -->
|
|
<!--********************************-->
|
|
|
|
<!-- 通用查询映射结果 -->
|
|
<resultMap id="BaseResultMap" type="com.cpop.nftmeta.common.entity.ZTicketTier">
|
|
<result column="tier_id" property="tierId" />
|
|
<result column="schedule_id" property="scheduleId" />
|
|
<result column="show_id" property="showId" />
|
|
<result column="tier_name" property="tierName" />
|
|
<result column="tier_price" property="tierPrice" />
|
|
<result column="seats_in_tier" property="seatsInTier" />
|
|
<result column="seats_available_in_tier" property="seatsAvailableInTier" />
|
|
<result column="creation_time" property="creationTime" />
|
|
<result column="update_time" property="updateTime" />
|
|
<result column="status" property="status" />
|
|
<result column="deleted" property="deleted" />
|
|
</resultMap>
|
|
</mapper>
|