You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
558 B
35 lines
558 B
5 days ago
|
namespace Admin.NET.Core.Service;
|
||
|
|
||
|
public class ConfigInput : BaseIdInput
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public class PageConfigInput : BasePageInput
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编码
|
||
|
/// </summary>
|
||
|
public string Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 分组编码
|
||
|
/// </summary>
|
||
|
public string GroupCode { get; set; }
|
||
|
}
|
||
|
|
||
|
public class AddConfigInput : SysConfig
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public class UpdateConfigInput : AddConfigInput
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public class DeleteConfigInput : BaseIdInput
|
||
|
{
|
||
|
}
|