mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
16 lines
406 B
C#
16 lines
406 B
C#
namespace Serein.Web
|
|
{
|
|
public class ControllerBase
|
|
{
|
|
public string Url { get; set; }
|
|
public string BobyData { get; set; }
|
|
|
|
public string GetLog(Exception ex)
|
|
{
|
|
return "Url : " + Url + Environment.NewLine +
|
|
"Ex : " + ex.Message + Environment.NewLine +
|
|
"Data : " + BobyData + Environment.NewLine;
|
|
}
|
|
}
|
|
}
|