using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class ProductRunStatusLogicDto { /// /// 设备标识 /// public long ProductID { get; set; } /// /// 运行状态 /// public int RunStatus { get; set; } } }