using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 添加 /// public class AddEtaAnalyConfigureInput { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 分析频率 /// public int Frequency { get; set; } /// /// 说明 /// public string Description { get; set; } } }