fix:刷新数据

This commit is contained in:
xiang
2025-07-28 22:12:17 +08:00
parent 56987b850a
commit 279633f53b
8 changed files with 362 additions and 67 deletions

View File

@@ -278,10 +278,15 @@
from fwd_perform_seat_info
where seat_plan_id = #{seatId} and perform_id = #{performId} and project_id = #{projectId}
</select>
<select id="getPerformSeatByProjectId" resultType="com.xiang.xservice.fwd.entity.pojo.FPerformSeatInfo">
<select id="getPerformSeatByProjectId" resultMap="BaseResultMap">
select <include refid="Base_Column_List"/>
from fwd_perform_seat_info
where project_id = #{projectId} and sold_out = 0
</select>
<select id="getBySeatPlanId" resultMap="BaseResultMap">
select <include refid="Base_Column_List"/>
from fwd_perform_seat_info
where seat_plan_id = #{id}
</select>
</mapper>