设备保养

This commit is contained in:
2023-05-24 17:24:05 +08:00
parent 5ef9cf73dd
commit 991f6618ee
16 changed files with 945 additions and 110 deletions

View File

@@ -72,7 +72,7 @@ public partial class EqpSpotInsRecordD : BaseEntity<string>
/// <summary>
/// 单位id
/// </summary>
public string unit_id { get; set; } = string.Empty;
public string? unit_id { get; set; } = string.Empty;
/// <summary>
/// 点巡检方法
@@ -108,5 +108,10 @@ public partial class EqpSpotInsRecordD : BaseEntity<string>
/// 是否通过
/// </summary>
public string? is_pass { get; set; }
/// <summary>
/// 所属组织
/// </summary>
public string? org_id { get; set; }
}