using Admin.NET.Core;
using System;
using System.ComponentModel.DataAnnotations;
namespace Admin.NET.Application
{
///
/// 菜单关联量表输入参数
///
public class BusMenuMapScaleInput : BasePageInput
{
///
///
///
public virtual long MenuId { get; set; }
///
///
///
public virtual long ScaleId { get; set; }
}
public class AddBusMenuMapScaleInput : BusMenuMapScaleInput
{
}
public class DeleteBusMenuMapScaleInput : BaseIdInput
{
}
public class UpdateBusMenuMapScaleInput : BusMenuMapScaleInput
{
///
/// Id主键
///
[Required(ErrorMessage = "Id主键不能为空")]
public long Id { get; set; }
}
public class QueryeBusMenuMapScaleInput : BaseIdInput
{
}
}