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.
26 lines
1.3 KiB
26 lines
1.3 KiB
5 years ago
|
<?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.epmet.dao.IssueVoteStatisticalDailyDao">
|
||
|
|
||
|
<resultMap type="com.epmet.entity.IssueVoteStatisticalDailyEntity" id="issueVoteStatisticalDailyMap">
|
||
|
<result property="id" column="ID"/>
|
||
|
<result property="issueId" column="ISSUE_ID"/>
|
||
|
<result property="statisticalDate" column="STATISTICAL_DATE"/>
|
||
|
<result property="supportCount" column="SUPPORT_COUNT"/>
|
||
|
<result property="oppositionCount" column="OPPOSITION_COUNT"/>
|
||
|
<result property="totalCount" column="TOTAL_COUNT"/>
|
||
|
<result property="todayIncrement" column="TODAY_INCREMENT"/>
|
||
|
<result property="supportIncrement" column="SUPPORT_INCREMENT"/>
|
||
|
<result property="oppositionIncrement" column="OPPOSITION_INCREMENT"/>
|
||
|
<result property="votableCount" column="VOTABLE_COUNT"/>
|
||
|
<result property="delFlag" column="DEL_FLAG"/>
|
||
|
<result property="revision" column="REVISION"/>
|
||
|
<result property="createdBy" column="CREATED_BY"/>
|
||
|
<result property="createdTime" column="CREATED_TIME"/>
|
||
|
<result property="updatedBy" column="UPDATED_BY"/>
|
||
|
<result property="updatedTime" column="UPDATED_TIME"/>
|
||
|
</resultMap>
|
||
|
|
||
|
|
||
|
</mapper>
|