30 lines
652 B
C#
30 lines
652 B
C#
using DOAN.Model.Factory_Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.huate_group.recipe.Dto
|
|
{
|
|
/// <summary>
|
|
/// 产线 childern device
|
|
/// </summary>
|
|
public class ProductLineChildrenDevice
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int? FkWorkshopId { get; set; }
|
|
public string WorkshopName { get; set; }
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
public string LineName { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public BaseDeviceAccount[] Children { get; set; }
|
|
|
|
}
|
|
}
|