using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class SysParameter { public string ParameterKey { get; set; } public string Value { get; set; } public string Description { get; set; } } }