You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace Ds.Module.ResultFilter
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 返回值处理
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum DsResultCode
|
|
|
|
|
{
|
|
|
|
|
[Description("操作失败")]
|
|
|
|
|
Fail = 10000,
|
|
|
|
|
|
|
|
|
|
[Description("请求成功")]
|
|
|
|
|
Success = 20000,
|
|
|
|
|
}
|
|
|
|
|
}
|