SysParameter.cs 300 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysParameter
  7. {
  8. public string ParameterKey { get; set; }
  9. public string Value { get; set; }
  10. public string Description { get; set; }
  11. }
  12. }