| | |
| | | <result column="create_user" property="createUser" /> |
| | | <result column="create_time" property="createTime" /> |
| | | <result column="update_user" property="updateUser" /> |
| | | <result column="actual_start_time" property="actualStartTime" /> |
| | | <result column="actual_end_time" property="actualEndTime" /> |
| | | </resultMap> |
| | | |
| | | <select id="listPageProductionProductMainDto" resultType="com.ruoyi.production.bean.dto.ProductionProductMainDto"> |
| | |
| | | <if test="c.productMainId != null"> |
| | | and ppm.id = #{c.productMainId} |
| | | </if> |
| | | <if test="c.currentUserId != null"> |
| | | and (pot.user_ids is null or pot.user_ids = '' or pot.user_ids = '[]' or json_contains(pot.user_ids, json_quote(cast(#{c.currentUserId} as char)))) |
| | | </if> |
| | | </where> |
| | | order by ppm.create_time desc |
| | | </select> |