| 12345678910111213141516171819202122232425262728 |
- namespace Admin.NET.Plugin.AiDOP.Dto.S8;
- public class AdoS8OperatorBindingRowDto
- {
- public long EmployeeId { get; set; }
- public string EmpCode { get; set; } = string.Empty;
- public string? Name { get; set; }
- public long FactoryRefId { get; set; }
- public long? SysUserId { get; set; }
- public string? SysUserName { get; set; }
- public string BindStatus { get; set; } = "UNBOUND";
- }
- public class AdoS8OperatorBindingCreateDto
- {
- public long EmployeeId { get; set; }
- public long SysUserId { get; set; }
- public long FactoryRefId { get; set; }
- }
- public class AdoS8ConfigSysUserRowDto
- {
- public long Id { get; set; }
- public string? Account { get; set; }
- public string? RealName { get; set; }
- public int Status { get; set; }
- public long? AlreadyBoundEmployeeId { get; set; }
- }
|