Просмотр исходного кода

获取助力明细配置更新

liuyao 1 год назад
Родитель
Сommit
e606694486

+ 1 - 1
src/main/java/com/dk/oauth/mapper/integral/CouponReceiveMapper.xml

@@ -41,7 +41,7 @@
     <sql id="Condition">
         <where>
             <if test="cpId != null and cpId != ''">
-                AND tmcr.cp_id = #{cpId}::
+                AND tmcr.cp_id = #{cpId}
             </if>
             <if test="couponId != null and couponId != ''">
                 AND tmcr.coupon_id = #{couponId}::uuid

+ 1 - 1
src/main/java/com/dk/oauth/mapper/integral/CouponSendMapper.java

@@ -24,7 +24,7 @@ public interface CouponSendMapper extends BaseMapper<CouponSend>{
      * @date   : 2024/7/24 9:23
      * @author : 寇珊珊
      */
-    CouponSendResponse selectById(@Param("id") String id);
+    CouponSendResponse selectById(@Param("sendId") String id);
 
     /**
      * @desc   : 条件查询

+ 1 - 1
src/main/java/com/dk/oauth/model/VO/integral/CouponReceiveVO.java

@@ -66,7 +66,7 @@ public class CouponReceiveVO  {
      */
     @Excel(name = "微信Id")
     @ApiModelProperty(value = "微信Id")
-    private Integer userWxid;
+    private String userWxid;
 
 
     /**

+ 1 - 1
src/main/java/com/dk/oauth/model/pojo/integral/CouponReceive.java

@@ -75,7 +75,7 @@ public class CouponReceive extends PageInfo<CouponReceive> implements Serializab
      */
     @Excel(name = "微信Id")
     @ApiModelProperty(value = "微信Id")
-    private Integer userWxid;
+    private String userWxid;
 
 
     /**

+ 1 - 1
src/main/java/com/dk/oauth/model/query/integral/CouponReceiveQuery.java

@@ -60,7 +60,7 @@ public class CouponReceiveQuery extends PageInfo<CouponReceiveQuery> {
      */
     @Excel(name = "微信Id")
     @ApiModelProperty(value = "微信Id")
-    private Integer userWxid;
+    private String userWxid;
 
 
     /**