commit | author | age
|
a18bfa
|
1 |
<?xml version="1.0" encoding="UTF-8" ?> |
Z |
2 |
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > |
|
3 |
<!-- Table:epc_money_expend_log --> |
|
4 |
<mapper namespace="com.changhong.epc.tenant.mapper.tenant.cost.costlog.MoneyExpendLogMapper"> |
|
5 |
<resultMap id="moneyExpendLogMapperResultMap" type="com.changhong.epc.bean.tenant.cost.budgetlog.MoneyExpendLog"> |
|
6 |
<result property="formId" column="form_id"/><!-- 表单id --> |
|
7 |
<result property="rowId" column="row_id"/><!-- 表单数据id --> |
|
8 |
<result property="qFormId" column="q_form_id"/><!-- 变更其它表单id --> |
|
9 |
<result property="qRowId" column="q_row_id"/><!-- 变更其它数据id --> |
|
10 |
<result property="operatorMsg" column="operator_msg"/><!-- 操作信息 --> |
|
11 |
<result property="alterAlias" column="alter_alias"/><!-- 变更的字段别名 --> |
|
12 |
<result property="alterContentOld" column="alter_content_old"/><!-- 变更的内容 --> |
|
13 |
<result property="alterContentNew" column="alter_content_new"/><!-- 变更后的内容 --> |
|
14 |
</resultMap> |
|
15 |
<sql id="moneyExpendLogSql"> |
|
16 |
form_id, row_id, q_form_id, q_row_id, operator_msg |
|
17 |
, alter_alias, alter_content_old, alter_content_new |
|
18 |
</sql> |
|
19 |
</mapper> |