using Ips.Library.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ips.Sps.Scheduling
{
public class RunSigDama
{
public DamaDetType DmDetType { get; set; } = DamaDetType.AutoDisc;
///
/// 采样类型,1:实采样 2:复采样
///
public int Channel { get; set; } = 2;
///
/// 倍速处理,1为原始速度 19200时建议4倍 96000使用2倍
///
public int Sparese { get; set; } = 2;
///
/// 是否包含ccow
///
public bool Ccow { get; set; } = false;
///
/// 是否使用full检测
///
public bool Full { get; set; } = false;
}
}