人机交互页面

This commit is contained in:
quowingwang
2025-12-12 17:14:20 +08:00
parent 9f620c70c1
commit d36e48b532
6 changed files with 219 additions and 23 deletions

View File

@@ -24,23 +24,6 @@ namespace ZR.Model.MES.andon
/// </summary>
public string Operate { get; set; }
/// <summary>
/// 操作人
/// </summary>
public string Operator { get; set; }
/// <summary>
/// 操作人名称
/// </summary>
[SugarColumn(ColumnName = "operator_name")]
public string OperatorName { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[SugarColumn(ColumnName = "operate_time")]
public DateTime? OperateTime { get; set; }
/// <summary>
/// 备注
/// </summary>
@@ -52,6 +35,12 @@ namespace ZR.Model.MES.andon
[SugarColumn(ColumnName = "created_by")]
public string CreatedBy { get; set; }
/// <summary>
/// 创建人名称
/// </summary>
[SugarColumn(ColumnName = "created_name")]
public string CreatedName { get; set; }
/// <summary>
/// 创建时间
/// </summary>
@@ -64,6 +53,12 @@ namespace ZR.Model.MES.andon
[SugarColumn(ColumnName = "updated_by")]
public string UpdatedBy { get; set; }
/// <summary>
/// 更新人名称
/// </summary>
[SugarColumn(ColumnName = "updated_name")]
public string UpdatedName { get; set; }
/// <summary>
/// 更新时间
/// </summary>

View File

@@ -53,6 +53,9 @@ namespace ZR.Model.MES.andon.Dto
public DateTime? UpdatedTime { get; set; }
public string UserId { get; set; }
public string UserName { get; set; }
}

View File

@@ -22,19 +22,16 @@ namespace ZR.Model.MES.andon.Dto
public string Operate { get; set; }
public string Operator { get; set; }
public string OperatorName { get; set; }
public DateTime? OperateTime { get; set; }
public string Remarks { get; set; }
public string CreatedBy { get; set; }
public string CreatedName { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public string UpdatedName { get; set; }
public DateTime? UpdatedTime { get; set; }