| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.gkhy.exam.coalmine.mapper.ExaminerManageMapper"> |
| | | |
| | | </mapper> |
| | | <resultMap type="com.gkhy.exam.coalmine.entity.ExaminerManage" id="ExaminerManageMap"> |
| | | <result property="id" column="id"/> |
| | | <result property="name" column="name"/> |
| | | <result property="sex" column="sex"/> |
| | | <result property="code" column="code"/> |
| | | <result property="mobilePhone" column="mobile_phone"/> |
| | | <result property="jobTitle" column="job_title"/> |
| | | <result property="eduLevel" column="edu_level"/> |
| | | <result property="expiredTime" column="expired_time"/> |
| | | <result property="isCm" column="is_cm"/> |
| | | <result property="description" column="description"/> |
| | | <result property="photoAttachment" column="photo_attachment"/> |
| | | <result property="qaAttachment" column="qa_attachment"/> |
| | | <result property="status" column="status"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectAllField"> |
| | | select id, name, sex, code, mobile_phone, job_title, edu_level, expired_time, is_cm, description,photo_attachment, qa_attachment,status, del_flag, create_by, create_time, update_by, update_time |
| | | from examiner_manage |
| | | </sql> |
| | | </mapper> |
| | | |