Explorar el Código

日志问题

master
747575620@qq.com hace 6 meses
padre
commit
5862d20c41
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. +1
    -1
      backend/BPA.MES.Base.Application/Entitys/Logs/ProgramLogEntity.cs
  2. +2
    -2
      backend/BPA.MES.Base.Application/Services/LogService/Dtos/ProgramLogDto.cs

+ 1
- 1
backend/BPA.MES.Base.Application/Entitys/Logs/ProgramLogEntity.cs Ver fichero

@@ -13,7 +13,7 @@
/// 日志类型
/// </summary>
[SugarColumn(IsNullable = true)]
public ELogType LogType { get; set; }
public string LogType { get; set; }

/// <summary>
/// 日志消息


+ 2
- 2
backend/BPA.MES.Base.Application/Services/LogService/Dtos/ProgramLogDto.cs Ver fichero

@@ -11,7 +11,7 @@
/// <summary>
/// 日志类型
/// </summary>
public ELogType LogType { get; set; } = ELogType.Info;
public string LogType { get; set; }

/// <summary>
/// 日志消息
@@ -72,7 +72,7 @@
/// <summary>
/// 日志类型
/// </summary>
public ELogType? LogType { get; set; }
public string LogType { get; set; }

/// <summary>
/// 日志消息


Cargando…
Cancelar
Guardar