月报问题,发布邮件末班修改,任务切换迭代

This commit is contained in:
2025-07-09 17:32:05 +08:00
parent 19a4e73998
commit 4eb3f4662f
22 changed files with 205 additions and 113 deletions

View File

@ -15,7 +15,7 @@
<result column="deleted" property="deleted" />
</resultMap>
<select id="listByLaneIds" resultType="com.sa.zentao.dao.ZtKanbancolumnDTO">
SELECT c.*,b.lane,b.kanban,b.cards, b.type cardType from zt_kanbancolumn c,zt_kanbancell b
SELECT c.*,b.lane,b.kanban,b.cards, b.type cardType ,b.id cellId from zt_kanbancolumn c,zt_kanbancell b
WHERE c.id = b.column
and b.lane in

View File

@ -220,7 +220,21 @@
</if>
order by s.id desc
<choose>
<when test="qo.orderName != '' and qo.orderName != null ">
<choose>
<when test="qo.orderSort != '' and qo.orderSort != null ">
order by s.${qo.orderName} ${qo.orderSort}
</when>
<otherwise>
order by s.id desc
</otherwise>
</choose>
</when>
<otherwise>
order by s.id desc
</otherwise>
</choose>
</select>
</mapper>