namespace HStation.Dto.Assets { /// /// /// public class SeriesIDInput { /// /// /// [Required, Range(1, long.MaxValue, ErrorMessage = "SeriesID 必须大于0")] public long SeriesID { get; set; } } }