2024-08-27 09:34:52 +08:00

24 lines
425 B
C#

using DOAN.Model.huate_group.recipe;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.Factory_Model.Dto
{
/// <summary>
/// 将配方和设备组合
/// </summary>
public class DevicecCombination
{
public BaseDeviceAccount _account { set; get; }
public Recipee _recipee { set; get; }
}
}