mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-08 06:37:59 +08:00

1 完成进出库实例Stock; 2 全面实现组织数据分离,参考Stock实例; 3 全新的基于CodeSmith EF生成机制; 4 全面完成菜单授权; 5 增加Anonymous机制,可以灵活控制Action是否需要权限控制;
14 lines
245 B
C#
14 lines
245 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace OpenAuth.Mvc.Models
|
|
{
|
|
/// <summary>
|
|
/// 允许匿名访问
|
|
/// </summary>
|
|
public class AnonymousAttribute :Attribute
|
|
{
|
|
}
|
|
} |