摘要:
```python use this chunk of code USER_PRIVATE_FIELDS = ['password'] @api.model def _check_credentials(self, password): result = super(LoginUserDetail, self)._check_credentials(password) ip_address = r 阅读全文
摘要:
```sql SELECT SERVERPROPERTY('servername') AS 实例名, SERVERPROPERTY('ProductVersion') AS 实例版本, SERVERPROPERTY('Edition') AS 产品版本, SERVERPROPERTY('ProductLevel') AS 版本级别, @@VERSION AS 版本信息 ``` 阅读全文