2025-07-21 14:35:17 +08:00
|
|
|
namespace DMS.Application.DTOs;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用于创建新设备及其关联的变量表和菜单的DTO。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CreateDeviceWithDetailsDto
|
|
|
|
|
{
|
2025-07-27 21:08:58 +08:00
|
|
|
public DeviceDto Device { get; set; }
|
2025-07-21 14:35:17 +08:00
|
|
|
public VariableTableDto VariableTable { get; set; }
|
2025-07-24 15:07:03 +08:00
|
|
|
|
|
|
|
|
public MenuBeanDto DeviceMenu { get; set; } // 如果需要包含菜单信息
|
|
|
|
|
public MenuBeanDto VariableTableMenu { get; set; } // 如果需要包含菜单信息
|
2025-07-21 14:35:17 +08:00
|
|
|
}
|