This commit is contained in:
杨晓东 2025-11-05 16:09:21 +08:00
parent c85f3895ab
commit e68166bc6a
2 changed files with 16 additions and 1 deletions

View File

@ -86,5 +86,15 @@ namespace DOAN.Model.Business
public string DeviceName { get; set; }
public string Workshop { get; set; }
public string Workline { get; set; }
public int? Status { get; set; }
public string DeviceSpecification { get; set; }
public string ResponsiblePerson { get; set; }
}
}

View File

@ -120,7 +120,12 @@ namespace DOAN.Service.Business
{
Id = uniqueValue.Id,
DeviceCode = uniqueValue.UniqueValue,
DeviceName = dictionary.DeviceName
DeviceName = dictionary.DeviceName,
Workshop = dictionary.Workshop,
Workline = dictionary.Workline,
Status = dictionary.Status,
DeviceSpecification = dictionary.DeviceSpecification,
ResponsiblePerson = dictionary.ResponsiblePerson
});
}