Shuxia Ning
2024-09-10 049f546f25cabfb5b08e29c54f49d61a544b0395
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; }
    }
}