ConfigInput.cs 786 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证。
  2. //
  3. // 必须在法律法规允许的范围内正确使用,严禁将其用于非法、欺诈、恶意或侵犯他人合法权益的目的。
  4. namespace Admin.NET.Core.Service;
  5. public class ConfigInput : BaseIdInput
  6. {
  7. }
  8. public class PageConfigInput : BasePageInput
  9. {
  10. /// <summary>
  11. /// 名称
  12. /// </summary>
  13. public string Name { get; set; }
  14. /// <summary>
  15. /// 编码
  16. /// </summary>
  17. public string Code { get; set; }
  18. /// <summary>
  19. /// 分组编码
  20. /// </summary>
  21. public string GroupCode { get; set; }
  22. }
  23. public class AddConfigInput : SysConfig
  24. {
  25. }
  26. public class UpdateConfigInput : AddConfigInput
  27. {
  28. }
  29. public class DeleteConfigInput : BaseIdInput
  30. {
  31. }