namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipWorkshopChangeQueryOutput
{
public string id { get; set; } = string.Empty;
///
/// 旧车间id
///
public string old_workshop_id { get; set; } = string.Empty;
///
/// 新车间id
///
public string new_workshop_id { get; set; } = string.Empty;
///
/// 旧安装地点
///
public string? old_installation_location { get; set; }
///
/// 新安装地点
///
public string? new_installation_location { get; set; }
///
/// 备注
///
public string? remark { get; set; }
///
/// 创建时间
///
public string? create_time { get; set; }
}
}