74 lines
1.7 KiB
C#
74 lines
1.7 KiB
C#
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Common.Models
|
|||
|
|
{
|
|||
|
|
///// <summary>
|
|||
|
|
///// 取样接口
|
|||
|
|
///// </summary>
|
|||
|
|
//public interface ISamplingModel
|
|||
|
|
//{
|
|||
|
|
// double Height { get; set; }
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
|
|||
|
|
///// <summary>
|
|||
|
|
///// 穿刺取样模型
|
|||
|
|
///// </summary>
|
|||
|
|
//[Serializable]
|
|||
|
|
//public class PunctureSamplingModel : ObservableObject, ISamplingModel
|
|||
|
|
//{
|
|||
|
|
|
|||
|
|
// private double height;
|
|||
|
|
// /// <summary>
|
|||
|
|
// /// 取样高度
|
|||
|
|
// /// </summary>
|
|||
|
|
// public double Height
|
|||
|
|
// {
|
|||
|
|
// get { return height; }
|
|||
|
|
// set { SetProperty(ref height, value); }
|
|||
|
|
// }
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
///// <summary>
|
|||
|
|
///// 开盖取样模型
|
|||
|
|
///// </summary>
|
|||
|
|
//[Serializable]
|
|||
|
|
//public class OpenLidSamplingModel : ObservableObject, ISamplingModel
|
|||
|
|
//{
|
|||
|
|
// private double intervalTime;
|
|||
|
|
// /// <summary>
|
|||
|
|
// /// 取样间隔时间,单位min
|
|||
|
|
// /// </summary>
|
|||
|
|
// public double IntervalTime
|
|||
|
|
// {
|
|||
|
|
// get { return intervalTime; }
|
|||
|
|
// set { SetProperty(ref intervalTime, value); }
|
|||
|
|
// }
|
|||
|
|
|
|||
|
|
// private double height;
|
|||
|
|
// /// <summary>
|
|||
|
|
// /// 取样高度
|
|||
|
|
// /// </summary>
|
|||
|
|
// public double Height
|
|||
|
|
// {
|
|||
|
|
// get { return height; }
|
|||
|
|
// set { SetProperty(ref height, value); }
|
|||
|
|
// }
|
|||
|
|
|
|||
|
|
// private int count;
|
|||
|
|
// /// <summary>
|
|||
|
|
// /// 取样次数
|
|||
|
|
// /// </summary>
|
|||
|
|
// public int Count
|
|||
|
|
// {
|
|||
|
|
// get { return count; }
|
|||
|
|
// set { SetProperty(ref count, value); }
|
|||
|
|
// }
|
|||
|
|
//}
|
|||
|
|
}
|