You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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> GoodsTechnologyInfo { get; set; }
- }
- public class GoodsTechnologyInfo
- {
- /// <summary>
- /// 工艺id
- /// </summary>
- public string DeviceTechnologyId { get; set; }
- /// <summary>
- /// 工艺名称
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// 设备版本
- /// </summary>
- public string DeviceVersionKey { get; set; }
- }
- }
|