lixiaojun
2024-03-26 4c1f4ee445ba8b48a7216a1f88c8ee735fa45af4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Yw.Dto.DOCS
{
    /// <summary>
    /// 
    /// </summary>
    public class AttachInput
    {
        /// <summary>
        /// 
        /// </summary>    
        [Required]
        public string AttachType { get; set; }
 
        /// <summary>
        /// 
        /// </summary>    
        [Required, Range(1, long.MaxValue, ErrorMessage = "AttachID 必须大于0")]
        public long AttachID { get; set; }
    }
}