Shuxia Ning
2024-08-07 5d467f7600e5e3c93c5a6b9b1c590d580f71999c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace IStation.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class CodeUnderCorpInput : CodeInput
    {
        /// <summary>
        /// 
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "CorpID 必须大于0")]
        public long CorpID { get; set; }
    }
}