lixiaojun
2025-02-16 2da6b14a2979c73f2efca596c897650d935ceaa9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace HStation.Dto.Assets
{
    /// <summary>
    /// 
    /// </summary>
    public class SeriesIDInput
    {
        /// <summary>
        /// 
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "SeriesID 必须大于0")]
        public long SeriesID { get; set; }
    }
}