|
@@ -50,6 +50,25 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</where>
|
|
|
order by enterprise_name,year,season,month
|
|
|
</select>
|
|
|
+
|
|
|
+ <select id="selectEnterpriseBaseDataTotalListMOHU" parameterType="EnterpriseBaseDataTotal" resultMap="EnterpriseBaseDataTotalResult">
|
|
|
+ <include refid="selectEnterpriseBaseDataTotalVo"/>
|
|
|
+ <where>
|
|
|
+ <if test="enterpriseName != null and enterpriseName != ''"> and enterprise_name like concat('%', #{enterpriseName}, '%')</if>
|
|
|
+ <if test="location != null and location != ''"> and location = #{location}</if>
|
|
|
+ <if test="code != null and code != ''"> and code = #{code}</if>
|
|
|
+ <if test="totalIndustrialValue != null "> and total_industrial_value = #{totalIndustrialValue}</if>
|
|
|
+ <if test="taxableIncome != null "> and taxable_income = #{taxableIncome}</if>
|
|
|
+ <if test="paidTax != null "> and paid_tax = #{paidTax}</if>
|
|
|
+ <if test="funding != null "> and funding = #{funding}</if>
|
|
|
+ <if test="energyConsume != null "> and energy_consume = #{energyConsume}</if>
|
|
|
+ <if test="powerConsume != null "> and power_consume = #{powerConsume}</if>
|
|
|
+ <if test="year != null and year != ''"> and year = #{year}</if>
|
|
|
+ <if test="season != null and season != ''"> and season = #{season}</if>
|
|
|
+ <if test="month != null and month != ''"> and month = #{month}</if>
|
|
|
+ </where>
|
|
|
+ order by enterprise_name,year,season,month
|
|
|
+ </select>
|
|
|
|
|
|
<select id="selectEnterpriseBaseDataTotalByEnterpriseName" parameterType="String" resultMap="EnterpriseBaseDataTotalResult">
|
|
|
<include refid="selectEnterpriseBaseDataTotalVo"/>
|