获取当前时间的代码:xml文件中 <td><div align="center"><br/><strong>送检时间</strong></div></td><td><br/> <script type="text/javascript"> function getNowFormatDate() { var date = new Date(); va
一.Mybatis中用#{}和${}获取输入参数的区别 1.“#{}“和“${}”都可以从接口输入中的map对象或者pojo对象中获取输入的参数值.例如 <mapper namespace="com.hh.dao.UserDao"> <select id="selectByIdList" resultType="com.hh.domain.SysUser"> select * from user where id=#{id