using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Sanhe.Abp.Identity.Dto { public class OrganizationUnitAddUserDto { /// /// 用户Id /// [Required] public List UserIds { get; set; } } }