lixiaojun
2023-10-11 1d86ecdc56c4395c5abaffa45e53e957054b348b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace IStation.Application.SQI
{
    /// <summary>
    /// 
    /// </summary>
    public class TenantIDInput
    {
        /// <summary>
        /// 
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "TenantID 必须大于0")]
        public long TenantID { get; set; }
    }
}