ningshuxia
2024-05-28 3805d90be3760e4881e30f28c22018f0e04b0eb2
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; }
    }
}