AdoS8OperatorBindingDtos.cs 827 B

12345678910111213141516171819202122232425262728
  1. namespace Admin.NET.Plugin.AiDOP.Dto.S8;
  2. public class AdoS8OperatorBindingRowDto
  3. {
  4. public long EmployeeId { get; set; }
  5. public string EmpCode { get; set; } = string.Empty;
  6. public string? Name { get; set; }
  7. public long FactoryRefId { get; set; }
  8. public long? SysUserId { get; set; }
  9. public string? SysUserName { get; set; }
  10. public string BindStatus { get; set; } = "UNBOUND";
  11. }
  12. public class AdoS8OperatorBindingCreateDto
  13. {
  14. public long EmployeeId { get; set; }
  15. public long SysUserId { get; set; }
  16. public long FactoryRefId { get; set; }
  17. }
  18. public class AdoS8ConfigSysUserRowDto
  19. {
  20. public long Id { get; set; }
  21. public string? Account { get; set; }
  22. public string? RealName { get; set; }
  23. public int Status { get; set; }
  24. public long? AlreadyBoundEmployeeId { get; set; }
  25. }