iws中i8工程项目定时器的中文状态转换成字典

This commit is contained in:
hongchao 2025-07-07 09:20:56 +08:00
parent ad33168e9c
commit 0da067b680
1 changed files with 8 additions and 1 deletions

View File

@ -200,7 +200,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="getIwsProjectList" resultType="com.bonus.material.basic.domain.BmProject">
select
dfs.id as externalId,
dfs.project_status as proStatus,
case dfs.project_status
when '开工准备' then 1
when '在建' then 2
when '停工' then 3
when '完工未竣工' then 4
when '竣工' then 5
else dfs.project_status
end as proStatus,
dfs.real_end_date as actualEndDate
from data_center.dx_fb_son dfs
</select>