This commit is contained in:
quowingwang
2025-12-21 14:25:17 +08:00
parent 71374b064d
commit 4c7ef6c741
8 changed files with 118 additions and 112 deletions

View File

@@ -23,7 +23,7 @@ namespace ZR.Model.MES.andon
/// 报警时间
/// </summary>
[SugarColumn(ColumnName = "level_time")]
public string LevelTime { get; set; }
public int LevelTime { get; set; }
/// <summary>

View File

@@ -146,5 +146,8 @@ namespace ZR.Model.MES.andon
[SugarColumn(ColumnName = "area2")]
public string Area2 { get; set; }
[SugarColumn(ColumnName = "autocount")]
public int AutoCount { get; set; }
}
}

View File

@@ -20,7 +20,7 @@ namespace ZR.Model.MES.andon.Dto
public string LevelName { get; set; }
public string LevelTime { get; set; }
public int LevelTime { get; set; }
public string CreatedBy { get; set; }

View File

@@ -67,5 +67,7 @@ namespace ZR.Model.MES.andon.Dto
public string Area1 { get; set; }
public string Area2 { get; set; }
public string[] Area { get; set; }
public int AutoCount { get; set; }
}
}