ningshuxia
2025-04-11 3c285bbed129d8bfe21fa2c83bddb68f434bc2af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace IStation.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class IDUnderCorpInput : IDInput
    {
        /// <summary>
        /// 
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "CorpID 必须大于0")]
        public long CorpID { get; set; }
 
    }
}