You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System;
|
|
|
|
namespace Myshipping.Core.Attributes
|
|
{
|
|
/// <summary>
|
|
/// 使用自定义的参数校验提示信息
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = true)]
|
|
public class JoinValidateMessgeAttribute : Attribute
|
|
{
|
|
}
|
|
}
|