You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
958 B
XML
15 lines
958 B
XML
|
4 months 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="org.dromara.oa.erp.mapper.ErpContractInfoMapper">
|
||
|
|
<resultMap type="org.dromara.oa.erp.domain.vo.ErpContractInfoVo" id="ErpContractInfoResult">
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<select id="selectCustomErpContractInfoVoList" resultMap="ErpContractInfoResult">
|
||
|
|
select contract_id, tenant_id, contract_flag, contract_code, contract_name, contract_category, contract_type, business_direction, contract_dept_id, contract_date, total_price, a_customer_id, a_represent, a_date, b_customer_id, b_represent, b_date, contract_status, flow_status, template_id, oss_id, payment_method, signature_appendix, tax_rate, remark, active_flag, del_flag, create_dept, create_by, create_time, update_by, update_time from erp_contract_info t
|
||
|
|
${ew.getCustomSqlSegment}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
</mapper>
|