| | |
| | | <result column="companyId" property="companyId" /> |
| | | <result column="serverCarModelId" property="serverCarModelId" /> |
| | | <result column="content" property="content" /> |
| | | <result column="fareTypeNote1" property="fareTypeNote1"/> |
| | | <result column="fareTypeNote2" property="fareTypeNote2"/> |
| | | <result column="fareTypeNote3" property="fareTypeNote3"/> |
| | | <result column="fareTypeNote" property="fareTypeNote"/> |
| | | <result column="state" property="state"/> |
| | | <result column="contentPutOne" property="contentPutOne"/> |
| | | <result column="contentNotOne" property="contentNotOne"/> |
| | | <result column="contentPutTwo" property="contentPutTwo"/> |
| | | <result column="contentNotTwo" property="contentNotTwo"/> |
| | | <result column="contentPutThree" property="contentPutThree"/> |
| | | <result column="contentNotThree" property="contentNotThree"/> |
| | | <result column="contentExclusive" property="contentExclusive"/> |
| | | <result column="contentPrice" property="contentPrice"/> |
| | | <result column="isOpen" property="isOpen"/> |
| | | <result column="isOpenExclusive" property="isOpenExclusive"/> |
| | | <result column="isOpenPrice" property="isOpenPrice"/> |
| | | </resultMap> |
| | | |
| | | <!-- 通用查询结果列 --> |
| | |
| | | id, type, companyId, serverCarModelId, content |
| | | </sql> |
| | | |
| | | <!--查询快车价格设置--> |
| | | <!--查询专车价格设置--> |
| | | <select id="getSpecialPriceList" resultType="map" parameterType="com.baomidou.mybatisplus.plugins.Page"> |
| | | SELECT * FROM (SELECT sp.id,sp.type,sp.companyId,sc.`name`,sc.img,sp.state from t_system_price as sp |
| | | LEFT JOIN t_server_carmodel as sc on sc.id = sp.serverCarModelId) as o |