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.
24 lines
548 B
24 lines
548 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Win_in.Sfs.Shared.Domain.Shared;
|
|
|
|
namespace Win_in.Sfs.Auth.Application.Contracts;
|
|
|
|
public abstract class PageLockCreateUpdateInputBase : SfsAuthCreateUpdateInputBase
|
|
{
|
|
/// <summary>
|
|
/// 菜单代码
|
|
/// </summary>
|
|
public string MenuCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户账户
|
|
/// </summary>
|
|
public string UserAccount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 登录时间
|
|
/// </summary>
|
|
public string LoginTime { get; set; }
|
|
|
|
}
|
|
|