lixiaojun
2024-03-24 891cc5a533a57b992d18b6204faf4eb9c57472c1
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; }
    }
}