bug,设备迁移
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user