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.
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FreeSql.DataAnnotations;
|
|
namespace djy.Paas.Model
|
|
{/// <summary>
|
|
/// 日志表
|
|
/// </summary>
|
|
public class tb_sys_Logs:DataBase
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 消息
|
|
/// </summary>
|
|
public string Message { get; set; }
|
|
/// <summary>
|
|
/// 触发对象类型名称
|
|
/// </summary>
|
|
public string ObjName { get; set; }
|
|
/// <summary>
|
|
/// 触发的Gid
|
|
/// </summary>
|
|
public string ObjGid { get; set; }
|
|
/// <summary>
|
|
/// 触发数据json
|
|
/// </summary>
|
|
[Column(StringLength =-1)]
|
|
public string DataJson { get; set; }
|
|
/// <summary>
|
|
/// 结果数据json
|
|
/// </summary>
|
|
[Column(StringLength =-1)]
|
|
public string ResultJson { get; set; }
|
|
/// <summary>
|
|
/// 来源系统
|
|
/// </summary>
|
|
[Column(StringLength =50)]
|
|
public string SysCode { get; set; }
|
|
|
|
}
|
|
}
|