CmmWeightRecordEntityFull.cs 354 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace Core.StlMes.Client.LgResMgt.Mcms.entity
  3. {
  4. public class CmmWeightRecordEntityFull :CmmWeightRecordEntity
  5. {
  6. public List<CmmWeightMatEntity> MatInfos { get; set; }
  7. public override string ToString()
  8. {
  9. return XmlHelper.ToXElement(this).ToString();
  10. }
  11. }
  12. }