namespace BPA.MES.Base.Application.Entitys
{
///
/// 名 称 :产线设备
/// 创 建 人 :yangxiao
/// 创建时间 : 2023/7/20 16:45:05
/// 描 述 :
///
[SugarTable("productline_devices")]
public class Pztj_LineDevicesEntity : DEntityBase
{
///
/// 产线Id
///
public string LineId { get; set; }
///
/// 产线设备
///
public string DeviceId { get; set; }
///
/// 工序Id
///
public string StepId { get;set; }
}
}