1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using OTSModelSharp.ResourceManage;
- namespace OTSMeasureApp
- {
- public class CPropItemGrp //样品信息
- {
- private OTS_SAMPLE_PROP_GRID_ITEM_GROUPS groupId;
- private String sTitle; //样品名称
- private List<CPropItem> sampleDataList = new List<CPropItem>(); //样品属性数据
- public List<CPropItem> GetSampleDataList()
- {
- return sampleDataList;
- }
- public void SetSampleDataList(List<CPropItem> value)
- {
- sampleDataList = value;
- }
- public OTS_SAMPLE_PROP_GRID_ITEM_GROUPS GetGroupId()
- {
- return groupId;
- }
- public void SetGroupId(OTS_SAMPLE_PROP_GRID_ITEM_GROUPS value)
- {
- groupId = value;
- }
- public string GetSTitle()
- {
- return sTitle;
- }
- public void SetSTitle(string value)
- {
- sTitle = value;
- }
- }
- }
|