|
@@ -24,6 +24,7 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
import java.security.spec.ECField;
|
|
import java.security.spec.ECField;
|
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
@@ -90,8 +91,7 @@ public class WxUserServiceImpl extends ServiceImpl<IWxUserMapper, WxUser> implem
|
|
}
|
|
}
|
|
WxUser wxUser = new WxUser();
|
|
WxUser wxUser = new WxUser();
|
|
BeanUtils.copyProperties(param,wxUser);
|
|
BeanUtils.copyProperties(param,wxUser);
|
|
- wxUser.setCreateTime(null);
|
|
|
|
- wxUser.setUpdateTime(null);
|
|
|
|
|
|
+ wxUser.setUpdateTime(new Date());
|
|
this.updateById(wxUser);
|
|
this.updateById(wxUser);
|
|
}
|
|
}
|
|
|
|
|