CmmWeightRecordEntityFull.cs 428 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml.Linq;
  6. namespace Core.StlMes.Client.Mcp.Mch.Mcms.entity
  7. {
  8. public class CmmWeightRecordEntityFull :CmmWeightRecordEntity
  9. {
  10. public List<CmmWeightMatEntity> MatInfos { get; set; }
  11. public override string ToString()
  12. {
  13. return XmlHelper.ToXElement(this).ToString();
  14. }
  15. }
  16. }