主程序
This commit is contained in:
parent
f5775d106e
commit
0952ab75db
@ -167,7 +167,12 @@ public class LisWorkController extends BaseController {
|
|||||||
@ApiOperation("未建项目结果")
|
@ApiOperation("未建项目结果")
|
||||||
@GetMapping("/noitemresult")
|
@GetMapping("/noitemresult")
|
||||||
public Result noitemresult(Date jyrq, String yq,String ybh) {
|
public Result noitemresult(Date jyrq, String yq,String ybh) {
|
||||||
return lisWorkService.noitemresult(jyrq,yq,ybh);
|
return lisWorkService.getnoitemresult(jyrq,yq,ybh);
|
||||||
|
}
|
||||||
|
@ApiOperation("项目与通道号对照")
|
||||||
|
@GetMapping("/setiteminter")
|
||||||
|
public Result setiteminter(Date jyrq, String yq,String ybh,String xmdh,String tdh) {
|
||||||
|
// return lisWorkService.setiteminter(jyrq,yq,ybh);
|
||||||
|
return new Result("0","成功");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,5 @@ public interface LisWorkService {
|
|||||||
Result changelink(Date jyrq, String yq,String ybh,String instrid);
|
Result changelink(Date jyrq, String yq,String ybh,String instrid);
|
||||||
Result clearnotcomplete(Date jyrq, String yq,String ybh);
|
Result clearnotcomplete(Date jyrq, String yq,String ybh);
|
||||||
Result viewbackup(Date jyrq, String yq,String ybh);
|
Result viewbackup(Date jyrq, String yq,String ybh);
|
||||||
Result noitemresult(Date jyrq, String yq,String ybh);
|
Result getnoitemresult(Date jyrq, String yq,String ybh);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -629,7 +629,7 @@ public class LisWorkServiceImpl implements LisWorkService {
|
|||||||
return new Result("0", "成功!",map);
|
return new Result("0", "成功!",map);
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public Result noitemresult(Date jyrq, String yq,String ybh){
|
public Result getnoitemresult(Date jyrq, String yq,String ybh){
|
||||||
return new Result("0", "成功!");
|
return new Result("0", "成功!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -128,4 +128,8 @@
|
|||||||
select * from lab_result_bk
|
select * from lab_result_bk
|
||||||
where jyrq = #{jyrq} and yq = #{yq} and ybh = #{ybh}
|
where jyrq = #{jyrq} and yq = #{yq} and ybh = #{ybh}
|
||||||
</select>
|
</select>
|
||||||
|
<select id="getnoitemresult" resultType="com.czlis.common.core.domain.entity.lis.LabResult">
|
||||||
|
SELECT yq,xmdh,csjg FROM lab_result WHERE jyrq = #{jyrq} AND yq = #{yq} AND ybh =#{ybh}
|
||||||
|
AND upper(xmdh) not in (select tdh from xm_inter where yq = #{yq} )
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user