2025-12-17 11:12:13 +08:00

9 lines
186 B
C#

namespace YD_Event.Application.User.Dtos;
public class UpdateSysUserInput : AddSysUserInput
{
/// <summary>
/// 用户Id
/// </summary>
public long Id { get; set; }
}