| @@ -27,5 +27,7 @@ public interface WxBillDailyMapper extends CommonMapper<WxBillDaily, Long> { | |||||
| List<Long> getMerchantIdList(WxBillDaily record); | List<Long> getMerchantIdList(WxBillDaily record); | ||||
| WxBillHotNotify getBillHotNotify(WxBillDaily record); | WxBillHotNotify getBillHotNotify(WxBillDaily record); | ||||
| WxBillDaily selectById(Long id); | |||||
| } | } | ||||
| @@ -39,4 +39,6 @@ public interface WxBillDepositMapper extends CommonMapper<WxBillDeposit, Long> { | |||||
| WxBillHotNotify getBillHotNotify(WxBillDeposit wxBillDeposit); | WxBillHotNotify getBillHotNotify(WxBillDeposit wxBillDeposit); | ||||
| WxBillDeposit selectById(Long id); | |||||
| } | } | ||||
| @@ -27,5 +27,7 @@ public interface WxBillOtherDepositMapper extends CommonMapper<WxBillOtherDeposi | |||||
| List<Long> getMerchantIdList(WxBillOtherDeposit record); | List<Long> getMerchantIdList(WxBillOtherDeposit record); | ||||
| WxBillHotNotify getBillHotNotify(WxBillOtherDeposit record); | WxBillHotNotify getBillHotNotify(WxBillOtherDeposit record); | ||||
| WxBillOtherDeposit selectById(Long id); | |||||
| } | } | ||||
| @@ -31,4 +31,6 @@ public interface WxBillOtherMapper extends CommonMapper<WxBillOther, Long> { | |||||
| List<Long> getMerchantIdList(WxBillOther record); | List<Long> getMerchantIdList(WxBillOther record); | ||||
| WxBillHotNotify getBillHotNotify(WxBillOther record); | WxBillHotNotify getBillHotNotify(WxBillOther record); | ||||
| WxBillOther selectById(Long id); | |||||
| } | } | ||||
| @@ -34,4 +34,6 @@ public interface WxBillPropertyDepositMapper extends CommonMapper<WxBillProperty | |||||
| List<Long> getMerchantIdList(WxBillPropertyDeposit wxBillPropertyDeposit); | List<Long> getMerchantIdList(WxBillPropertyDeposit wxBillPropertyDeposit); | ||||
| WxBillHotNotify getBillHotNotify(WxBillPropertyDeposit wxBillPropertyDeposit); | WxBillHotNotify getBillHotNotify(WxBillPropertyDeposit wxBillPropertyDeposit); | ||||
| WxBillPropertyDeposit selectById(Long id); | |||||
| } | } | ||||
| @@ -71,5 +71,7 @@ public interface WxBillPropertyMapper extends CommonMapper<WxBillProperty, Long> | |||||
| WxBillHotNotify getBillHotNotify(WxBillProperty propertyQuery); | WxBillHotNotify getBillHotNotify(WxBillProperty propertyQuery); | ||||
| WxBillProperty selectById(Long id); | |||||
| } | } | ||||
| @@ -38,5 +38,7 @@ public interface WxBillRentManageMapper extends CommonMapper<WxBillRentManage, L | |||||
| List<Long> getMerchantIdList(WxBillRentManage wxBillRentManage); | List<Long> getMerchantIdList(WxBillRentManage wxBillRentManage); | ||||
| WxBillHotNotify getBillHotNotify(WxBillRentManage wxBillRentManage); | WxBillHotNotify getBillHotNotify(WxBillRentManage wxBillRentManage); | ||||
| WxBillRentManage selectById(Long id); | |||||
| } | } | ||||
| @@ -67,5 +67,7 @@ public interface WxBillRentMapper extends CommonMapper<WxBillRent, Long> { | |||||
| List<Long> getMerchantIdList(WxBillRent wxBillRent); | List<Long> getMerchantIdList(WxBillRent wxBillRent); | ||||
| WxBillHotNotify getBillHotNotify(WxBillRent wxBillRent); | WxBillHotNotify getBillHotNotify(WxBillRent wxBillRent); | ||||
| WxBillRent selectById(Long id); | |||||
| } | } | ||||
| @@ -82,6 +82,11 @@ | |||||
| <include refid="dynamicWhereConditions" /> | <include refid="dynamicWhereConditions" /> | ||||
| </select> | </select> | ||||
| <select id="selectById" parameterType="Long" resultMap="BaseResultMap"> | |||||
| select <include refid="allColumns" /> from wx_bill_daily | |||||
| where id = #{id} | |||||
| </select> | |||||
| <sql id = "queryBillDailyListConditions" > | <sql id = "queryBillDailyListConditions" > | ||||
| <where> | <where> | ||||
| 1 = 1 | 1 = 1 | ||||
| @@ -108,6 +108,11 @@ | |||||
| <include refid="dynamicWhereConditions" /> | <include refid="dynamicWhereConditions" /> | ||||
| </select> | </select> | ||||
| <select id="selectById" parameterType="Long" resultMap="BaseResultMap"> | |||||
| select <include refid="allColumns" /> from wx_bill_rent_deposit | |||||
| where id = #{id} | |||||
| </select> | |||||
| <select id="findRentContractIds" parameterType="com.iformall.domain.po.WxBillDeposit" resultType="Long"> | <select id="findRentContractIds" parameterType="com.iformall.domain.po.WxBillDeposit" resultType="Long"> | ||||
| select distinct rent_contract_id from wx_bill_rent_deposit | select distinct rent_contract_id from wx_bill_rent_deposit | ||||
| <include refid="dynamicWhereConditions" /> | <include refid="dynamicWhereConditions" /> | ||||
| @@ -87,6 +87,13 @@ | |||||
| <include refid="dynamicWhereConditions"/> | <include refid="dynamicWhereConditions"/> | ||||
| </select> | </select> | ||||
| <select id="selectById" parameterType="Long" resultMap="BaseResultMap"> | |||||
| select | |||||
| <include refid="allColumns"/> | |||||
| from wx_bill_other_deposit | |||||
| where id = #{id} | |||||
| </select> | |||||
| <sql id ="queryBillListConditions"> | <sql id ="queryBillListConditions"> | ||||
| <where> | <where> | ||||
| 1 = 1 | 1 = 1 | ||||
| @@ -84,6 +84,11 @@ | |||||
| <include refid="dynamicWhereConditions" /> | <include refid="dynamicWhereConditions" /> | ||||
| </select> | </select> | ||||
| <select id="selectById" parameterType="Long" resultMap="BaseResultMap"> | |||||
| select <include refid="allColumns" /> from wx_bill_other | |||||
| where id = #{id} | |||||
| </select> | |||||
| <sql id = "queryBillListConditions"> | <sql id = "queryBillListConditions"> | ||||
| <where> | <where> | ||||
| 1 = 1 | 1 = 1 | ||||
| @@ -88,6 +88,11 @@ | |||||
| <include refid="dynamicWhereConditions" /> | <include refid="dynamicWhereConditions" /> | ||||
| </select> | </select> | ||||
| <select id="selectById" parameterType="Long" resultMap="BaseResultMap"> | |||||
| select <include refid="allColumns" /> from wx_bill_property_deposit | |||||
| where id = #{id} | |||||
| </select> | |||||
| <select id="findPropertyContractIds" parameterType="com.iformall.domain.po.WxBillPropertyDeposit" resultMap="BaseResultMap"> | <select id="findPropertyContractIds" parameterType="com.iformall.domain.po.WxBillPropertyDeposit" resultMap="BaseResultMap"> | ||||
| select distinct property_contract_id from wx_bill_property_deposit | select distinct property_contract_id from wx_bill_property_deposit | ||||
| <include refid="dynamicWhereConditions" /> | <include refid="dynamicWhereConditions" /> | ||||
| @@ -116,7 +116,13 @@ | |||||
| <include refid="dynamicWhereConditions"/> | <include refid="dynamicWhereConditions"/> | ||||
| </select> | </select> | ||||
| <select id="selectById" parameterType="Long" resultMap="BaseResultMap"> | |||||
| select | |||||
| <include refid="allColumns"/> | |||||
| from wx_bill_property | |||||
| where id = #{id} | |||||
| </select> | |||||
| <sql id="queryBillPropertyListConditions"> | <sql id="queryBillPropertyListConditions"> | ||||
| <where> | <where> | ||||
| br.is_preview = 0 | br.is_preview = 0 | ||||
| @@ -99,6 +99,13 @@ | |||||
| from wx_bill_rent_manage | from wx_bill_rent_manage | ||||
| <include refid="dynamicWhereConditions"/> | <include refid="dynamicWhereConditions"/> | ||||
| </select> | </select> | ||||
| <select id="selectById" parameterType="Long" resultMap="BaseResultMap"> | |||||
| select | |||||
| <include refid="allColumns"/> | |||||
| from wx_bill_rent_manage | |||||
| where id = #{id} | |||||
| </select> | |||||
| <sql id="queryBillManageListConditions"> | <sql id="queryBillManageListConditions"> | ||||
| @@ -118,6 +118,12 @@ | |||||
| <include refid="dynamicWhereConditions"/> | <include refid="dynamicWhereConditions"/> | ||||
| </select> | </select> | ||||
| <select id="selectById" parameterType="Long" resultMap="BaseResultMap"> | |||||
| select | |||||
| <include refid="allColumns"/> | |||||
| from wx_bill_rent where id = #{id} | |||||
| </select> | |||||
| <sql id="queryBillRentListCondition"> | <sql id="queryBillRentListCondition"> | ||||
| <where> | <where> | ||||
| br.is_preview = 0 | br.is_preview = 0 | ||||