feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Request/QueryDroneCaseRecipientOrgR...

32 lines
691 B
C#
Raw Normal View History

2026-02-03 16:00:02 +08:00
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
{
/// <summary>
/// 接收人
/// </summary>
public class QueryDroneCaseRecipientOrgRoleReq : DroneMessage
{
/// <summary>
/// 是否发给全体用户
/// </summary>
public int? is_all { get; set; }
/// <summary>
/// 角色
/// </summary>
public string[] roles { get; set; }
/// <summary>
/// 部门
/// </summary>
public string[] orgs { get; set; }
}
}