1234567891011121314151617 |
- <?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.zhgd.scs.mapper.StatHidWorklistDayCountMapper">
- <resultMap id="BaseResultMap" type="com.zhgd.scs.domain.StatHidWorklistDayCount">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="date" column="date" jdbcType="VARCHAR"/>
- <result property="newCount" column="new_count" jdbcType="INTEGER"/>
- <result property="passCount" column="pass_count" jdbcType="INTEGER"/>
- <result property="overtimeCount" column="overtime_count" jdbcType="INTEGER"/>
- <result property="type" column="type" jdbcType="INTEGER"/>
- </resultMap>
- </mapper>
|