- using System.Collections.Generic;
- namespace Core.StlMes.Client.LgResMgt.Mcms.entity
- {
- public class CmmWeightRecordEntityFull :CmmWeightRecordEntity
- {
- public List<CmmWeightMatEntity> MatInfos { get; set; }
- public override string ToString()
- {
- return XmlHelper.ToXElement(this).ToString();
- }
- }
- }
|