wsd_djy/WebSiteCode/Cmdjy/WsdInterfaceModels/EnumCode.cs

21 lines
401 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace WsdInterfaceModels
{
/// <summary>
/// 返回信息代码
/// </summary>
[Flags]
public enum EnumCode
{
/// <summary>
/// 执行成功。
/// </summary>
Success = 1,
/// <summary>
/// 发生异常异常信息见msg参数。
/// </summary>
Exception = 2,
}
}