| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.IO;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Runtime.Serialization.Formatters.Binary;
- using Core.Mes.Client.Comm.Attribute;
- using Core.Mes.Client.Comm.Tool;
- using Newtonsoft.Json;
- namespace Core.StlMes.Client.Mcp.Control.Entity
- {
- [Serializable]
- /// <summary>
- /// 数据库表HTT_WASTE_RESULT所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:lenovo-PC 时间:2018-06-04
- /// </summary>
- public class HttWasteResultEntityWithList : HttWasteResultEntity
- {
- private List<PortHttBatchSampleResultEntityWithCheck> listPortMarts = new DataSourceList<PortHttBatchSampleResultEntityWithCheck>();
- public List<PortHttBatchSampleResultEntityWithCheck> ListPortMarts
- {
- get
- {
- return listPortMarts.Where(p => p.PhyBatchNo == BatchNo).ToList();
- }
- set { listPortMarts = value; }
- }
- }
- }
|