using Furion.Extras.Admin.NET;
|
using Furion.Extras.Admin.NET.Extension;
|
using Furion.Extras.Admin.NET.Service;
|
using System.ComponentModel.DataAnnotations;
|
|
namespace Admin.NET.Application
|
{
|
/// <summary>
|
/// ·ÖÒ³²éѯ$ChinaComment$ÊäÈë²ÎÊý
|
/// </summary>
|
public class $EntityName$PageInput : PageInputCustomBase
|
{
|
$QueryAttributes$
|
}
|
|
/// <summary>
|
/// ÐÂÔö$ChinaComment$ÊäÈë²ÎÊý
|
/// </summary>
|
public class Add$EntityName$Input : BasicsDEntity
|
{
|
$AddAttributes$
|
}
|
|
/// <summary>
|
/// ¸üÐÂ$ChinaComment$ÊäÈë²ÎÊý
|
/// </summary>
|
public class Update$EntityName$Input : Add$EntityName$Input
|
{
|
[Required(ErrorMessage = "IdÖ÷¼ü²»ÄÜΪ¿Õ")]
|
public virtual new long Id { get; set; }
|
}
|
|
/// <summary>
|
/// ɾ³ý$ChinaComment$ÊäÈë²ÎÊý
|
/// </summary>
|
public class Delete$EntityName$Input
|
{
|
public List<long> Id { get; set; }
|
}
|
|
/// <summary>
|
/// µ¥¸ö²éѯ$ChinaComment$ÊäÈë²ÎÊý
|
/// </summary>
|
public class Query$EntityName$Input : BaseId
|
{
|
|
}
|
}
|