You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
706 B
24 lines
706 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.FJC.TRACING.DataAnalyzers
|
|
{
|
|
/// <summary>
|
|
/// 默认数据解析类
|
|
/// </summary>
|
|
public class DefaultAnalyzer:DAInterface.IDataAnalyzer
|
|
{
|
|
public void Analyze(DAInterface.DAObject data)
|
|
{
|
|
data.AnalyzedValue = data.DAValue.ToString();
|
|
if (!string.IsNullOrEmpty(data.MaterialCode))
|
|
{
|
|
DAL.MD.MaterialDAL mdal = new DAL.MD.MaterialDAL();
|
|
var material = mdal.Get(data.MaterialCode);
|
|
data.MaterialName = material == null ? "" : material.MATERIAL_SHORT;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|