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.
31 lines
563 B
31 lines
563 B
namespace Admin.NET.Core.Service;
|
|
|
|
public class PagePrintInput : BasePageInput
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
}
|
|
|
|
public class AddPrintInput : SysPrint
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[Required(ErrorMessage = "模板名称不能为空")]
|
|
public override string Name { get; set; }
|
|
}
|
|
|
|
public class UpdatePrintInput : AddPrintInput
|
|
{
|
|
}
|
|
|
|
public class DeletePrintInput : BaseIdInput
|
|
{
|
|
}
|