namespace AdService.Controller.Dto { /// /// 采集服务配置 /// [Serializable] public class AdConfig { /// /// 数据存储目录 /// public string DataDir { get; set; } /// /// 清理目录 /// public string ClearDir { get; set; } /// /// 磁盘可用空间百分比 /// public float ClearCondition { get; set; } /// /// 删除{ClearHours}小时的数据 /// public int ClearHours { get; set; } /// /// 服务Http基地址 /// public string BaseHttpAddr { get; set; } /// /// 接口地址 /// public string SwaggerAddr { get; set; } /// /// 上报地址 /// public string AdcReportAddr { get; set; } } }