using System.ComponentModel.DataAnnotations;
namespace HStation.Dto.TransferFile
{
///
///
///
public class FileCodeExceptIDInput : FileCodeInput
{
///
///
///
[Required, Range(1, long.MaxValue, ErrorMessage = "ExceptID 必须大于0")]
public long ExceptID { get; set; }
}
}