15项采集项
This commit is contained in:
@@ -1226,8 +1226,14 @@ namespace JinYuan.MES
|
||||
string[] keys = line.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries);
|
||||
if (keys.Length == 3)
|
||||
{
|
||||
var temp = m.GetType().GetProperty(keys[1]).GetValue(m, null);
|
||||
var prop = m.GetType().GetProperty(keys[1]);
|
||||
|
||||
if (prop == null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
var temp = prop.GetValue(m, null);
|
||||
datavolist.Add(new TagDataVOListItem()
|
||||
{
|
||||
tagCode = keys[0],
|
||||
|
||||
Reference in New Issue
Block a user