lixiaojun
2025-01-18 1d8920a4dc787de7a38c65a63305378ea01234f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Yw.Dto.Unit
{
    /// <summary>
    /// 
    /// </summary>
    public class CodeExceptUnderTypeIDInput : CodeExceptInput
    {
        /// <summary>
        /// 
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "TypeID 必须大于0")]
        public long TypeID { get; set; }
    }
}