using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DW5S.DTO { /// /// 任务频点查询结果模型 /// public class TaskFreqResDto { /// /// 上行频点(Hz) /// public long FreqUpHz { get; set; } } }