using BPA.SAAS.Manage.Core.Device; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsTechnology { public class DeviceGoodsTechnologyView : BPA_DeviceInfo { public List GoodsTechnologyInfo { get; set; } } public class GoodsTechnologyInfo { /// /// 工艺id /// public string DeviceTechnologyId { get; set; } /// /// 工艺名称 /// public string Name { get; set; } /// /// 设备版本 /// public string DeviceVersionKey { get; set; } } }