using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.Groups
{
public class TaskAssignmenDto
{
///
/// 团组外键编号
///
public int DIId { get; set; }
///
/// 配置任务(设置数据外键编号)
///
public int CTId { get; set; }
///
/// 员工外键编号
///
public List UIdStr { get; set; }
///
/// 启用标识
///
public int IsEnable { get; set; } = 1;
///
/// 创建者Id
///
public int CreateUserId { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
public class TaskAssignmenQueryDto
{
///
/// 团组外键编号
///
public int DIId { get; set; }
///
/// 配置任务(设置数据外键编号)
///
public int CTId { get; set; }
}
public class TaskAllocationGroupSelectDto {
public int PortType { get; set; }
public string VisitBeginDt { get; set; }
public string VisitEndDt { get; set; }
}
public class TaskAllocationBulkAddDto
{
public int[] UserIds { get; set; }
public int[] PermissionTypeIds { get; set; }
public int[] GroupIds { get; set; }
public int CurrUserId { get; set; }
}
}