| | |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [MultiTenant] |
| | | [SugarTable, MultiTenant] |
| | | public class Sys_Log |
| | | { |
| | | /// <summary> |
| | |
| | | /// <summary> |
| | | /// 请求参数 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "请求参数")] |
| | | [SugarColumn(IsNullable = true, Length = int.MaxValue, ColumnDescription = "请求参数")] |
| | | public string RequestParam { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 响应参数 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "响应参数")] |
| | | [SugarColumn(IsNullable = true, Length = int.MaxValue, ColumnDescription = "响应参数")] |
| | | public string ResponseParam { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// 用户名称 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "用户名称")] |
| | | public string UserName { get; set; } |
| | | public string? UserName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 用户主键 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "用户主键")] |
| | | public int? User_Id { get; set; } |
| | | public int? UserId { get; set; } |
| | | } |
| | | } |