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