Commit 5b7dc191 authored by zhangch's avatar zhangch

撤床相关修改

parent 14c96ea0
...@@ -67,7 +67,11 @@ public enum AttachType { ...@@ -67,7 +67,11 @@ public enum AttachType {
/** /**
* 17:建床; * 17:建床;
*/ */
BUILD_BED((short) 17); BUILD_BED((short) 17),
/**
* 18:撤床;
*/
REMOVE_BED((short) 18);
private Short uploadType; private Short uploadType;
......
...@@ -82,7 +82,7 @@ public interface SrvSendMapper extends BaseMapper<ChSrvSend> { ...@@ -82,7 +82,7 @@ public interface SrvSendMapper extends BaseMapper<ChSrvSend> {
" LEFT JOIN CH_DISABLE_INFO t2 ON t1.DISAB_INFO_ID = t2.DISAB_INFO_ID " + " LEFT JOIN CH_DISABLE_INFO t2 ON t1.DISAB_INFO_ID = t2.DISAB_INFO_ID " +
" LEFT JOIN CH_SRV_BUILD_BED t3 ON t2.DISAB_INFO_ID = t3.DISAB_INFO_ID " + " LEFT JOIN CH_SRV_BUILD_BED t3 ON t2.DISAB_INFO_ID = t3.DISAB_INFO_ID " +
" WHERE " + " WHERE " +
"t3.BUILD_BED_ID IS NOT NULL " + "t3.BUILD_BED_ID IS NOT NULL AND " +
"t1.SRV_ORGAN_ID = #{srvOrganId} " + "t1.SRV_ORGAN_ID = #{srvOrganId} " +
" AND t2.REAL_NAME LIKE CONCAT( '%', CONCAT( #{realName}, '%' ) )") " AND t2.REAL_NAME LIKE CONCAT( '%', CONCAT( #{realName}, '%' ) )")
IPage<SearchDisableSimpleVo> buildBedSearchByRealName(Page<SearchDisableSimpleVo> page, Integer srvOrganId, String realName); IPage<SearchDisableSimpleVo> buildBedSearchByRealName(Page<SearchDisableSimpleVo> page, Integer srvOrganId, String realName);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment