Get similar work orders before wo creation.

This commit is contained in:
hchen2020 2023-09-15 14:42:14 -05:00
parent 3347d27a3b
commit c54e0353d8

View file

@ -5,4 +5,9 @@ public class VecRecord
public int Id { get; set; }
public float[] Vector { get; set; }
public string Text { get; set; }
public override string ToString()
{
return Text;
}
}