using System; using System.Collections.Generic; namespace MySystem.JavaUserModels { public partial class KxsAuthorization { public int Id { get; set; } public string AuthName { get; set; } public string Remark { get; set; } public string SecretKey { get; set; } public string Appid { get; set; } public int AuthType { get; set; } public string UpdateBy { get; set; } public string CreateBy { get; set; } public int Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }