Digital Office Automation System Backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SysOperLogMapper.xml 1.2KB

1 dag geleden
1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ruoyi.system.mapper.SysOperLogMapper">
  6. <resultMap type="SysOperLog" id="SysOperLogResult">
  7. <id property="operId" column="oper_id"/>
  8. <result property="title" column="title"/>
  9. <result property="businessType" column="business_type"/>
  10. <result property="method" column="method"/>
  11. <result property="requestMethod" column="request_method"/>
  12. <result property="operatorType" column="operator_type"/>
  13. <result property="operName" column="oper_name"/>
  14. <result property="deptName" column="dept_name"/>
  15. <result property="operUrl" column="oper_url"/>
  16. <result property="operIp" column="oper_ip"/>
  17. <result property="operLocation" column="oper_location"/>
  18. <result property="operParam" column="oper_param"/>
  19. <result property="jsonResult" column="json_result"/>
  20. <result property="status" column="status"/>
  21. <result property="errorMsg" column="error_msg"/>
  22. <result property="operTime" column="oper_time"/>
  23. </resultMap>
  24. </mapper>