| | |
| | | <result property="dispatchOrd_OAName" column="DispatchOrd_OAName"/> |
| | | <result property="dispatchOrd_OAEntourage" column="DispatchOrd_OAEntourage"/> |
| | | <result property="dispatchOrdCarID" column="DispatchOrdCarID"/> |
| | | <result property="dispatchOrdUpdateTime" column="DispatchOrdUpdateTime"/> |
| | | |
| | | <!-- ... 其他字段映射 ... --> |
| | | </resultMap> |
| | |
| | | AND OA_Name = #{driverName} |
| | | </select> |
| | | |
| | | <!-- 根据派工单号查询图片URL列表 --> |
| | | <select id="selectImageUrlsByDOrdIDDt" parameterType="String" resultType="String"> |
| | | select ImageUrl |
| | | from ImageData |
| | | where DOrdIDDt = #{dOrdIDDt} |
| | | and ImageDel = 0 |
| | | and ImageType in (1,2) |
| | | order by UpImageTime desc |
| | | </select> |
| | | |
| | | </mapper> |