| 12345678910111213141516171819 |
- 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<CmmWeightMatEntity> MatInfos { get; set; }
- public override string ToString()
- {
- return XmlHelper.ToXElement(this).ToString();
- }
- }
- }
|