using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Entity.DomainModels { public class EquipmentStateInvoke { /// /// 设备编号 /// public string equ_code { get; set; } /// /// 状态 /// public string status { get; set; } /// /// 时间 /// public DateTime createtime { get; set; } /// /// 库区 /// public string area_code { get; set; } } }