using System; using System.Collections.Generic; namespace MySystem.JavaModels { public partial class SysPublicParam { public long PublicId { get; set; } public string PublicName { get; set; } public string PublicKey { get; set; } public string PublicValue { get; set; } public string Status { get; set; } public string ValidateCode { get; set; } public string CreateBy { get; set; } public string UpdateBy { get; set; } public DateTime CreateTime { get; set; } public DateTime? UpdateTime { get; set; } public string PublicType { get; set; } public string SystemFlag { get; set; } public string DelFlag { get; set; } } }