添加会员付款吗

This commit is contained in:
韩鹏辉 2024-05-29 13:39:41 +08:00
parent 5e1e721233
commit 80d8203063
2 changed files with 8 additions and 1 deletions

View File

@ -60,7 +60,9 @@ public class OrderController {
// return orderService.mineYhq(userId); // return orderService.mineYhq(userId);
// } // }
@GetMapping("/mineCoupons") @GetMapping("/mineCoupons")
private Result mineCoupons(@RequestHeader String token,@RequestParam("userId") String userId,@RequestParam("status") String status, private Result mineCoupons(@RequestHeader String token,
@RequestParam("userId") String userId,
@RequestParam("status") String status,
@RequestParam(value = "page", required = false, defaultValue = "1") Integer page, @RequestParam(value = "page", required = false, defaultValue = "1") Integer page,
@RequestParam(value = "size", required = false, defaultValue = "1") Integer size, @RequestParam(value = "size", required = false, defaultValue = "1") Integer size,
@RequestParam("orderId") String orderId @RequestParam("orderId") String orderId

View File

@ -21,6 +21,7 @@
<result column="telephone" jdbcType="VARCHAR" property="telephone" /> <result column="telephone" jdbcType="VARCHAR" property="telephone" />
<result column="is_vip" jdbcType="TINYINT" property="isVip" /> <result column="is_vip" jdbcType="TINYINT" property="isVip" />
<result column="code" jdbcType="VARCHAR" property="code" /> <result column="code" jdbcType="VARCHAR" property="code" />
<result column="dynamic_code" jdbcType="VARCHAR" property="dynamicCode" />
<result column="is_attention" jdbcType="TINYINT" property="isAttention" /> <result column="is_attention" jdbcType="TINYINT" property="isAttention" />
<result column="attention_at" jdbcType="INTEGER" property="attentionAt" /> <result column="attention_at" jdbcType="INTEGER" property="attentionAt" />
<result column="is_shareholder" jdbcType="TINYINT" property="isShareholder" /> <result column="is_shareholder" jdbcType="TINYINT" property="isShareholder" />
@ -302,6 +303,10 @@
code = #{code,jdbcType=VARCHAR}, code = #{code,jdbcType=VARCHAR},
</if> </if>
<if test="dynamicCode != null">
dynamic_code = #{dynamicCode,jdbcType=VARCHAR},
</if>
<if test="dynamicCode != null"> <if test="dynamicCode != null">
dynamic_code = #{dynamicCode,jdbcType=VARCHAR}, dynamic_code = #{dynamicCode,jdbcType=VARCHAR},
</if> </if>