|
@@ -72,12 +72,13 @@ public class MerchantAuthServiceImpl extends ServiceImpl<MerchantAuthMapper, Mer
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void certificationAudit(Long id, String state) {
|
|
|
+ public void certificationAudit(Long id, String state,String message ) {
|
|
|
Long userId = SessionContextHolder.getId();
|
|
|
MerchantAuth merchantAuth = AssertUtils.available(this.getById(id), "商家认证不存在");
|
|
|
merchantAuth.setReviewStatus(state);
|
|
|
merchantAuth.setReviewTime(new Date());
|
|
|
merchantAuth.setReviewer(userId.toString());
|
|
|
+ merchantAuth.setMessage(message);
|
|
|
this.updateById(merchantAuth);
|
|
|
}
|
|
|
}
|