修复类型问题
This commit is contained in:
parent
7bcf717b95
commit
37334fc66c
|
|
@ -1,5 +1,6 @@
|
|||
package com.playlet.system.service.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import com.playlet.common.utils.DateUtils;
|
||||
|
|
@ -64,7 +65,7 @@ public class PlayletUserAccountServiceImpl extends ServiceImpl<PlayletUserAccoun
|
|||
*/
|
||||
@Override
|
||||
public int updatePlayletUserAccount(PlayletUserAccount playletUserAccount) {
|
||||
playletUserAccount.setUpdateTime(DateUtils.getNowDate());
|
||||
playletUserAccount.setUpdateTime(new Date());
|
||||
return playletUserAccountMapper.updatePlayletUserAccount(playletUserAccount);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue