|
@@ -130,11 +130,11 @@ public class UserBillingInformationServiceImpl extends ServiceImpl<UserBillingIn
|
|
|
UserBillingInformation userBillingInformation = new UserBillingInformation();
|
|
|
userBillingInformation.setEmail(email);
|
|
|
if (BeanUtil.isNotEmpty(this.getUserBillingInfo(compdfKitId))) {
|
|
|
- userBillingInformation.setCreatedAt(new Date());
|
|
|
userBillingInformation.setUpdatedAt(new Date());
|
|
|
this.baseMapper.update(userBillingInformation, new LambdaQueryWrapper<UserBillingInformation>().eq(UserBillingInformation::getUserId, compdfKitId));
|
|
|
} else {
|
|
|
userBillingInformation.setUpdatedAt(new Date());
|
|
|
+ userBillingInformation.setCreatedAt(new Date());
|
|
|
userBillingInformation.setUserId(compdfKitId);
|
|
|
this.baseMapper.insert(userBillingInformation);
|
|
|
}
|