HttWasteResultEntityWithList.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Runtime.Serialization;
  7. using System.Runtime.Serialization.Formatters.Binary;
  8. using Core.Mes.Client.Comm.Attribute;
  9. using Core.Mes.Client.Comm.Tool;
  10. using Newtonsoft.Json;
  11. namespace Core.StlMes.Client.Mcp.Control.Entity
  12. {
  13. [Serializable]
  14. /// <summary>
  15. /// 数据库表HTT_WASTE_RESULT所对应的实体类(生成工具:代码生成工具3.0)
  16. /// 作者:lenovo-PC 时间:2018-06-04
  17. /// </summary>
  18. public class HttWasteResultEntityWithList : HttWasteResultEntity
  19. {
  20. private List<PortHttBatchSampleResultEntityWithCheck> listPortMarts = new DataSourceList<PortHttBatchSampleResultEntityWithCheck>();
  21. public List<PortHttBatchSampleResultEntityWithCheck> ListPortMarts
  22. {
  23. get
  24. {
  25. return listPortMarts.Where(p => p.PhyBatchNo == BatchNo).ToList();
  26. }
  27. set { listPortMarts = value; }
  28. }
  29. }
  30. }