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";
|
||
}
|
||
}
|