using OpenAuth.App.Response; using OpenAuth.Repository.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.Request { /// /// 接收人 /// public class QueryDroneCaseRecipientUserReq : DroneMessage { public void Init() { if (this.recipientUserId == null) this.recipientUserId = new string[] { }; if (this.roles == null) this.roles = new string[] { }; if (this.orgs == null) this.orgs = new string[] { }; } /// /// 是否发给全体用户 /// public int? is_all { get; set; } /// /// 接收人名称 /// public string[] recipientUserId { get; set; } /// /// 角色 /// public string[] roles { get; set; } /// /// 部门 /// public string[] orgs { get; set; } } }