Procházet zdrojové kódy

[积分][修改]:去掉types查询条件

release_toaliyun_real
hanxueda před 7 roky
rodič
revize
5f268d08eb
2 změnil soubory, kde provedl 0 přidání a 17 odebrání
  1. +0
    -11
      mallinkService/src/main/java/com/iformall/domain/po/WxCouponChannel.java
  2. +0
    -6
      mallinkService/src/main/resources/mapper/WxCouponChannelMapper.xml

+ 0
- 11
mallinkService/src/main/java/com/iformall/domain/po/WxCouponChannel.java Zobrazit soubor

@@ -54,9 +54,6 @@ public class WxCouponChannel implements Serializable {
@Transient
protected List<Long> couponIds;

@Transient
protected List<Integer> types;

public List<Long> getCouponIds() {
return couponIds;
}
@@ -64,14 +61,6 @@ public class WxCouponChannel implements Serializable {
this.couponIds = couponIds;
}

public List<Integer> getTypes() {
return types;
}

public void setTypes(List<Integer> types) {
this.types = types;
}

/*租户ID**/
@io.swagger.annotations.ApiModelProperty(value="租户ID",name="tenantId")
private String tenantId;


+ 0
- 6
mallinkService/src/main/resources/mapper/WxCouponChannelMapper.xml Zobrazit soubor

@@ -93,12 +93,6 @@
#{couponIdsItem}
</foreach>
</if>
<if test=" null != types ">
and c.type in
<foreach collection="types" index="index" item="typesItem" open="(" separator="," close=")">
#{typesItem}
</foreach>
</if>
<if test=" null != sortColumns"> order by ${sortColumns} </if>
</sql>



Načítá se…
Zrušit
Uložit