_Mapper_deptid.xml 309 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <select>
  3. <selectstr>
  4. SELECT u_dept.deptid,
  5. u_dept.deptname,
  6. moneyrate,
  7. discount,
  8. pricelistid
  9. FROM u_dept
  10. </selectstr>
  11. <where>
  12. <when notnull="@arg_deptid">
  13. u_dept.deptid = @arg_deptid
  14. </when>
  15. </where>
  16. <displayfields>
  17. </displayfields>
  18. </select>