using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel.DataAnnotations; namespace IStation.Application { /// /// /// public class CurveIDInput { /// /// CurveID /// [Required, Range(1, long.MaxValue, ErrorMessage = "ID 必须大于0")] public long CurveID { get; set; } } }