style(watch): 清理代码格式,移除多余空行

统一 health-watch-api 模块中多个文件的代码风格,
删除冗余空行,保持代码整洁一致。

涉及文件:
- DepartStatTransfer.java
- DeptData.java
- DeptStatData.java
- WearingDetailTransfer.java
This commit is contained in:
2026-05-14 10:00:25 +08:00
parent 61f26973ae
commit 74310b095c
54 changed files with 315 additions and 29639 deletions
@@ -55,6 +55,11 @@ public class UserFilter {
*/
private List<String> excludeUserIds;
/**
* 非关爱人员标记:0-否,1-是
*/
private Integer nonCareFlag;
private Integer pageNo;
private Integer pageSize;
@@ -100,7 +100,8 @@
a.care_liaison_job,
a.care_liaison_phone,
a.lifeguard_name,
a.lifeguard_phone
a.lifeguard_phone,
a.non_care_flag
from QH_HLT_USER_EMPLOYEE_EX a
left join QH_SYS_USER b on a.id = b.id
</sql>
@@ -185,6 +186,7 @@
<result column="lifeguard_name" jdbcType="VARCHAR" property="lifeguardName"/>
<result column="lifeguard_phone" jdbcType="VARCHAR" property="lifeguardPhone"/>
<result column="md_marriage_status" jdbcType="VARCHAR" property="mdMarriageStatus"/>
<result column="non_care_flag" jdbcType="INTEGER" property="nonCareFlag"/>
</association>
</resultMap>
@@ -241,6 +243,9 @@
<if test="filter.sex != null and filter.sex != ''">
and b.sex = #{filter.sex,jdbcType=INTEGER}
</if>
<if test="filter.nonCareFlag != null">
and a.non_care_flag = #{filter.nonCareFlag,jdbcType=INTEGER}
</if>
</where>
order by
<choose>