123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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<int> UIdStr { get; set; }
-
-
-
- public int IsEnable { get; set; } = 1;
-
-
-
- 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 UserId { get; set; }
- public int OperateId { get; set; }
- public int[] GroupIds { get; set; }
- public int CurrUserId { get; set; }
- }
- }
|