9 lines
186 B
C#
9 lines
186 B
C#
namespace YD_Event.Application.Organization.Dtos;
|
|
|
|
public class UpdateOrgInput : AddOrgInput
|
|
{
|
|
/// <summary>
|
|
/// 部门Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
} |