mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-14 21:46:38 +08:00
15 lines
404 B
C#
15 lines
404 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.DtoModel.RABC.Student.ConstConfig
|
|||
|
|
{
|
|||
|
|
public class StudentConst
|
|||
|
|
{
|
|||
|
|
public const string 学生异常错误 = nameof(学生异常错误);
|
|||
|
|
public const string 学生友好错误 = nameof(学生友好错误)+",状态码将返回200";
|
|||
|
|
}
|
|||
|
|
}
|