17 lines
359 B
C#
17 lines
359 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
|
|
{
|
|
/// <summary>
|
|
/// 常量定义
|
|
/// </summary>
|
|
public class StudentConst
|
|
{
|
|
public const string 学生已重复 = "失败!学生已经重复";
|
|
}
|
|
}
|