15 lines
349 B
C#
15 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Domain.Shared.Student.ConstClasses
|
|
{
|
|
public class AuthStudentConst
|
|
{
|
|
public const string 查询 = "student:student:list";
|
|
public const string 添加 = "student:student:add";
|
|
}
|
|
}
|