using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ips.Library.Entity
{
///
/// 采样类型
///
public enum SampleType
{
///
/// 实采样
///
[Description("实采样")]
Scy = 1,
///
/// 负采样
///
[Description("复采样")]
Fcy = 2
}
}