using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class TagNameExceptInput
|
{
|
/// <summary>
|
/// 标签名称
|
/// </summary>
|
[Required, DataValidation(AllowEmptyStrings = false)]
|
public string TagName { get; set; }
|
|
/// <summary>
|
/// 排除标识
|
/// </summary>
|
[Required, Range(1, long.MaxValue, ErrorMessage = "ExceptID 必须大于0")]
|
public long ExceptID { get; set; }
|
}
|
}
|