预警短信发送,修试入库数量显示
This commit is contained in:
parent
e91ff17b80
commit
02f99835fa
|
|
@ -124,7 +124,7 @@
|
|||
|
||||
<select id="getUserList" resultType="com.bonus.material.warningAnalysis.domain.UseMaintenanceWarningBean">
|
||||
SELECT
|
||||
sgp.cno
|
||||
sgp.cno as userName
|
||||
FROM
|
||||
bm_project bp
|
||||
LEFT JOIN `data_center`.dx_fb_son dfs on bp.external_id = dfs.id
|
||||
|
|
@ -132,16 +132,16 @@
|
|||
|
||||
WHERE sgp.post_id = '3de0eb390f3611efa1940242ac130004'
|
||||
|
||||
AND bp.pro_id = #{leaseProjectId}
|
||||
AND bp.pro_id = #{projectId}
|
||||
</select>
|
||||
|
||||
<select id="getUserPhoneById" resultType="com.bonus.material.warningAnalysis.domain.UseMaintenanceWarningBean">
|
||||
select
|
||||
user_id,
|
||||
user_id as userId,
|
||||
phonenumber AS clzPhone
|
||||
from
|
||||
sys_user
|
||||
where user_name = #{cno}
|
||||
where user_name = #{userName}
|
||||
</select>
|
||||
|
||||
<select id="getWarningLastDayList" resultType="com.bonus.material.warningAnalysis.domain.UseMaintenanceWarningBean">
|
||||
|
|
@ -192,8 +192,8 @@
|
|||
|
||||
<select id="getUserManger" resultType="com.bonus.material.warningAnalysis.domain.UseMaintenanceWarningBean">
|
||||
SELECT
|
||||
su.user_id,
|
||||
su.phonenumber
|
||||
su.user_id as userId,
|
||||
su.user_name as userName
|
||||
FROM
|
||||
sys_user su
|
||||
LEFT JOIN sys_user_role sr on su.user_id = sr.user_id
|
||||
|
|
|
|||
Loading…
Reference in New Issue