1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class SysOauthClientDetails
- {
- public long Id { get; set; }
- public string ClientId { get; set; }
- public string ResourceIds { get; set; }
- public string ClientSecret { get; set; }
- public string Scope { get; set; }
- public string AuthorizedGrantTypes { get; set; }
- public string WebServerRedirectUri { get; set; }
- public string Authorities { get; set; }
- public int? AccessTokenValidity { get; set; }
- public int? RefreshTokenValidity { get; set; }
- public string AdditionalInformation { get; set; }
- public string Autoapprove { get; set; }
- public string DelFlag { get; set; }
- public string CreateBy { get; set; }
- public string UpdateBy { get; set; }
- public DateTime? CreateTime { get; set; }
- public DateTime? UpdateTime { get; set; }
- }
- }
|