using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; namespace Core.StlMes.Client.Mcp.Mch.Mcms.entity { public class CmmWeightRecordEntityFull :CmmWeightRecordEntity { public List MatInfos { get; set; } public override string ToString() { return XmlHelper.ToXElement(this).ToString(); } } }