studygolang.xml 208 B

123456789
  1. <sqlMap>
  2. <sql id="selectAllArticle">
  3. select id,title,createdatetime,content
  4. from article where id in (?1,?2)
  5. </sql>
  6. <sql id="selectStudentById1">
  7. select * from article where id=?id
  8. </sql>
  9. </sqlMap>