24 lines
425 B
C#
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; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|