lanan-system/dl-module-knowledge/src/main/resources/mapper/TBidConfirmationCandidateMapper.xml
愉快的大福 58f3d3d4a3 知识模块
2024-08-12 21:27:02 +08:00

27 lines
792 B
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="cn.iocoder.yudao.module.knowledge.mapper.TBidConfirmationCandidateMapper">
<select id="selectByConfirmId" resultType="cn.iocoder.yudao.module.knowledge.entity.TBidConfirmationCandidate">
SELECT
id AS id,
orders AS orders,
tender_offer AS tenderOffer,
candidate_name AS candidateName,
create_time AS createTime,
update_time AS updateTime
FROM
t_bid_confirmation_candidate
WHERE
bid_confirmation_id = #{id}
AND deleted = 0
ORDER BY
orders DESC
</select>
</mapper>