bug,设备迁移

This commit is contained in:
2023-06-26 17:02:04 +08:00
parent 2e90f164a0
commit 5a918b25ad
12 changed files with 274 additions and 3 deletions

View File

@@ -0,0 +1,36 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipWorkshopChangeQueryOutput
{
public string id { get; set; } = string.Empty;
/// <summary>
/// 旧车间id
/// </summary>
public string old_workshop_id { get; set; } = string.Empty;
/// <summary>
/// 新车间id
/// </summary>
public string new_workshop_id { get; set; } = string.Empty;
/// <summary>
/// 旧安装地点
/// </summary>
public string? old_installation_location { get; set; }
/// <summary>
/// 新安装地点
/// </summary>
public string? new_installation_location { get; set; }
/// <summary>
/// 备注
/// </summary>
public string? remark { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public string? create_time { get; set; }
}
}