Bladeren bron

[商户][修复]:删除商户店铺中的老的租期字段

release_toaliyun_real
hupeng 7 jaren geleden
bovenliggende
commit
d3fe922b82
1 gewijzigde bestanden met toevoegingen van 1 en 11 verwijderingen
  1. +1
    -11
      mallinkService/src/main/resources/mapper/WxMerchantShopMapper.xml

+ 1
- 11
mallinkService/src/main/resources/mapper/WxMerchantShopMapper.xml Bestand weergeven

@@ -8,14 +8,12 @@
<result column="shop_id" jdbcType="BIGINT" property="shopId" /> <result column="shop_id" jdbcType="BIGINT" property="shopId" />
<result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> <result column="create_date" jdbcType="TIMESTAMP" property="createDate" />
<result column="update_date" jdbcType="TIMESTAMP" property="updateDate" /> <result column="update_date" jdbcType="TIMESTAMP" property="updateDate" />
<result column="rental_start_date" jdbcType="TIMESTAMP" property="rentalStartDate" />
<result column="rental_end_date" jdbcType="TIMESTAMP" property="rentalEndDate" />
<result column="is_del" jdbcType="SMALLINT" property="isDel" /> <result column="is_del" jdbcType="SMALLINT" property="isDel" />
</resultMap> </resultMap>
<sql id="allColumns"> <sql id="allColumns">
`id`,`tenant_id`,`merchant_id`,`shop_id`,`create_date`,`update_date`,`rental_start_date`,`rental_end_date`,`is_del`
`id`,`tenant_id`,`merchant_id`,`shop_id`,`create_date`,`update_date`,`is_del`
</sql> </sql>


<sql id="dynamicWhereConditions"> <sql id="dynamicWhereConditions">
@@ -51,14 +49,6 @@
</if> </if>
<if test=" null != rentalStartDate ">
and `rental_start_date` = #{rentalStartDate}
</if>
<if test=" null != rentalEndDate ">
and `rental_end_date` = #{rentalEndDate}
</if>
<if test=" null != isDel "> <if test=" null != isDel ">
and `is_del` = #{isDel} and `is_del` = #{isDel}
</if> </if>


Laden…
Annuleren
Opslaan