14 lines
317 B
C#
14 lines
317 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace YD_AllHeartRates.Commons.Exceptions
|
|||
|
{
|
|||
|
public class CommonException
|
|||
|
{
|
|||
|
public string ErrorCode; // 错误编号 0001 0002 0033 0004
|
|||
|
public string ErrorMsg;// 规范错误信息
|
|||
|
public bool Success;
|
|||
|
}
|
|||
|
}
|