f04b7fa5136257a8a8e14d1f46efa25801d616b8..36ca968755d48a60a7292a1a90e38b00bdf75536
9 天以前 peng
订单列表导出支持年月日时分秒
36ca96 对比 | 目录
9 天以前 peng
绑定电话号码不需要验证验证码
04327b 对比 | 目录
9 天以前 peng
礼品卡标识取消后标识能置空
b9eccd 对比 | 目录
3个文件已修改
13 ■■■■ 已修改文件
buyer-api/src/main/java/cn/lili/controller/passport/MemberBuyerController.java 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
framework/src/main/java/cn/lili/modules/goods/entity/dos/Goods.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
framework/src/main/java/cn/lili/modules/order/order/entity/dto/OrderSearchParams.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
buyer-api/src/main/java/cn/lili/controller/passport/MemberBuyerController.java
@@ -165,7 +165,7 @@
                                            @NotNull(message = "手机号为空") @RequestParam String mobile,
                                            @NotNull(message = "验证码为空") @RequestParam String code,
                                            @RequestHeader String uuid) {
        if (smsUtil.verifyCode(mobile, VerificationEnums.BIND_MOBILE, uuid, code)) {
//        if (smsUtil.verifyCode(mobile, VerificationEnums.BIND_MOBILE, uuid, code)) {
            Member member = memberService.findByUsername(username);
            Member memberByMobile = memberService.findByMobile(mobile);
            if (member == null) {
@@ -175,9 +175,9 @@
                throw new ServiceException(ResultCode.USER_MOBILE_REPEATABLE_ERROR);
            }
            return ResultUtil.data(memberService.changeMobile(member.getId(), mobile));
        } else {
            throw new ServiceException(ResultCode.VERIFICATION_SMS_CHECKED_ERROR);
        }
//        } else {
//            throw new ServiceException(ResultCode.VERIFICATION_SMS_CHECKED_ERROR);
//        }
    }
    @ApiOperation(value = "注册用户")
framework/src/main/java/cn/lili/modules/goods/entity/dos/Goods.java
@@ -179,6 +179,7 @@
    private Integer goodsSort;
    @ApiModelProperty(value ="表示虚拟商品类型 现有类型:COUPON优惠劵")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private String virtualGoodsType;
    public Goods() {
framework/src/main/java/cn/lili/modules/order/order/entity/dto/OrderSearchParams.java
@@ -84,12 +84,12 @@
    private Date paymentTime;
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "下单开始时间")
    private Date startDate;
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "下单结束时间")
    private Date endDate;