_Mapper_deptid.xml 314 B

12345678910111213141516171819
  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. profitrate
  10. FROM u_dept
  11. </selectstr>
  12. <where>
  13. <when notnull="@deptid">
  14. u_dept.deptid = @deptid
  15. </when>
  16. </where>
  17. <displayfields>
  18. </displayfields>
  19. </select>