<?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.by4cloud.platformx.business.mapper.ContractInvoiceMapper">
|
|
<resultMap id="ContractInvoiceMap" type="com.by4cloud.platformx.business.entity.ContractInvoice">
|
<id property="id" column="id"/>
|
<result property="compId" column="comp_id"/>
|
<result property="contractId" column="contract_id"/>
|
<result property="invoicePrice" column="invoice_price"/>
|
<result property="invoiceTime" column="invoice_time"/>
|
<result property="invoicePath" column="invoice_path"/>
|
<result property="invoiceCategory" column="invoice_category"/>
|
<result property="redReversal" column="red_reversal"/>
|
<result property="createBy" column="create_by"/>
|
<result property="createTime" column="create_time"/>
|
<result property="updateBy" column="update_by"/>
|
<result property="updateTime" column="update_time"/>
|
<result property="delFlag" column="del_flag"/>
|
</resultMap>
|
</mapper>
|